Commit c160bf13 by Patryk Czarnik

Countries_JAXWS - wygenerowanie klas

parent fab61ce4
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftContinent complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftContinent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tContinent" type="{http://www.oorsprong.org/websamples.countryinfo}tContinent" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftContinent", propOrder = {
"tContinent"
})
public class ArrayOftContinent {
@XmlElement(nillable = true)
protected List<TContinent> tContinent;
/**
* Gets the value of the tContinent property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tContinent property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTContinent().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TContinent }
*
*
* @return
* The value of the tContinent property.
*/
public List<TContinent> getTContinent() {
if (tContinent == null) {
tContinent = new ArrayList<>();
}
return this.tContinent;
}
}
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftCountryCodeAndName complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftCountryCodeAndName">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tCountryCodeAndName" type="{http://www.oorsprong.org/websamples.countryinfo}tCountryCodeAndName" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftCountryCodeAndName", propOrder = {
"tCountryCodeAndName"
})
public class ArrayOftCountryCodeAndName {
@XmlElement(nillable = true)
protected List<TCountryCodeAndName> tCountryCodeAndName;
/**
* Gets the value of the tCountryCodeAndName property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tCountryCodeAndName property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTCountryCodeAndName().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TCountryCodeAndName }
*
*
* @return
* The value of the tCountryCodeAndName property.
*/
public List<TCountryCodeAndName> getTCountryCodeAndName() {
if (tCountryCodeAndName == null) {
tCountryCodeAndName = new ArrayList<>();
}
return this.tCountryCodeAndName;
}
}
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftCountryCodeAndNameGroupedByContinent complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftCountryCodeAndNameGroupedByContinent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tCountryCodeAndNameGroupedByContinent" type="{http://www.oorsprong.org/websamples.countryinfo}tCountryCodeAndNameGroupedByContinent" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftCountryCodeAndNameGroupedByContinent", propOrder = {
"tCountryCodeAndNameGroupedByContinent"
})
public class ArrayOftCountryCodeAndNameGroupedByContinent {
@XmlElement(nillable = true)
protected List<TCountryCodeAndNameGroupedByContinent> tCountryCodeAndNameGroupedByContinent;
/**
* Gets the value of the tCountryCodeAndNameGroupedByContinent property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tCountryCodeAndNameGroupedByContinent property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTCountryCodeAndNameGroupedByContinent().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TCountryCodeAndNameGroupedByContinent }
*
*
* @return
* The value of the tCountryCodeAndNameGroupedByContinent property.
*/
public List<TCountryCodeAndNameGroupedByContinent> getTCountryCodeAndNameGroupedByContinent() {
if (tCountryCodeAndNameGroupedByContinent == null) {
tCountryCodeAndNameGroupedByContinent = new ArrayList<>();
}
return this.tCountryCodeAndNameGroupedByContinent;
}
}
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftCountryInfo complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftCountryInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tCountryInfo" type="{http://www.oorsprong.org/websamples.countryinfo}tCountryInfo" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftCountryInfo", propOrder = {
"tCountryInfo"
})
public class ArrayOftCountryInfo {
@XmlElement(nillable = true)
protected List<TCountryInfo> tCountryInfo;
/**
* Gets the value of the tCountryInfo property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tCountryInfo property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTCountryInfo().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TCountryInfo }
*
*
* @return
* The value of the tCountryInfo property.
*/
public List<TCountryInfo> getTCountryInfo() {
if (tCountryInfo == null) {
tCountryInfo = new ArrayList<>();
}
return this.tCountryInfo;
}
}
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftCurrency complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftCurrency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tCurrency" type="{http://www.oorsprong.org/websamples.countryinfo}tCurrency" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftCurrency", propOrder = {
"tCurrency"
})
public class ArrayOftCurrency {
@XmlElement(nillable = true)
protected List<TCurrency> tCurrency;
/**
* Gets the value of the tCurrency property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tCurrency property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTCurrency().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TCurrency }
*
*
* @return
* The value of the tCurrency property.
*/
public List<TCurrency> getTCurrency() {
if (tCurrency == null) {
tCurrency = new ArrayList<>();
}
return this.tCurrency;
}
}
package org.oorsprong.websamples;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for ArrayOftLanguage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="ArrayOftLanguage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="tLanguage" type="{http://www.oorsprong.org/websamples.countryinfo}tLanguage" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ArrayOftLanguage", propOrder = {
"tLanguage"
})
public class ArrayOftLanguage {
@XmlElement(nillable = true)
protected List<TLanguage> tLanguage;
/**
* Gets the value of the tLanguage property.
*
* <p>
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the Jakarta XML Binding object.
* This is why there is not a {@code set} method for the tLanguage property.
*
* <p>
* For example, to add a new item, do as follows:
* <pre>
* getTLanguage().add(newItem);
* </pre>
*
*
* <p>
* Objects of the following type(s) are allowed in the list
* {@link TLanguage }
*
*
* @return
* The value of the tLanguage property.
*/
public List<TLanguage> getTLanguage() {
if (tLanguage == null) {
tLanguage = new ArrayList<>();
}
return this.tLanguage;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "CapitalCity")
public class CapitalCity {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CapitalCityResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"capitalCityResult"
})
@XmlRootElement(name = "CapitalCityResponse")
public class CapitalCityResponse {
@XmlElement(name = "CapitalCityResult", required = true)
protected String capitalCityResult;
/**
* Gets the value of the capitalCityResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCapitalCityResult() {
return capitalCityResult;
}
/**
* Sets the value of the capitalCityResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCapitalCityResult(String value) {
this.capitalCityResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCurrencyCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sisoCurrencyCode"
})
@XmlRootElement(name = "CountriesUsingCurrency")
public class CountriesUsingCurrency {
@XmlElement(name = "sISOCurrencyCode", required = true)
protected String sisoCurrencyCode;
/**
* Gets the value of the sisoCurrencyCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCurrencyCode() {
return sisoCurrencyCode;
}
/**
* Sets the value of the sisoCurrencyCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCurrencyCode(String value) {
this.sisoCurrencyCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountriesUsingCurrencyResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndName"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countriesUsingCurrencyResult"
})
@XmlRootElement(name = "CountriesUsingCurrencyResponse")
public class CountriesUsingCurrencyResponse {
@XmlElement(name = "CountriesUsingCurrencyResult", required = true)
protected ArrayOftCountryCodeAndName countriesUsingCurrencyResult;
/**
* Gets the value of the countriesUsingCurrencyResult property.
*
* @return
* possible object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public ArrayOftCountryCodeAndName getCountriesUsingCurrencyResult() {
return countriesUsingCurrencyResult;
}
/**
* Sets the value of the countriesUsingCurrencyResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public void setCountriesUsingCurrencyResult(ArrayOftCountryCodeAndName value) {
this.countriesUsingCurrencyResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "CountryCurrency")
public class CountryCurrency {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountryCurrencyResult" type="{http://www.oorsprong.org/websamples.countryinfo}tCurrency"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countryCurrencyResult"
})
@XmlRootElement(name = "CountryCurrencyResponse")
public class CountryCurrencyResponse {
@XmlElement(name = "CountryCurrencyResult", required = true)
protected TCurrency countryCurrencyResult;
/**
* Gets the value of the countryCurrencyResult property.
*
* @return
* possible object is
* {@link TCurrency }
*
*/
public TCurrency getCountryCurrencyResult() {
return countryCurrencyResult;
}
/**
* Sets the value of the countryCurrencyResult property.
*
* @param value
* allowed object is
* {@link TCurrency }
*
*/
public void setCountryCurrencyResult(TCurrency value) {
this.countryCurrencyResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "CountryFlag")
public class CountryFlag {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountryFlagResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countryFlagResult"
})
@XmlRootElement(name = "CountryFlagResponse")
public class CountryFlagResponse {
@XmlElement(name = "CountryFlagResult", required = true)
protected String countryFlagResult;
/**
* Gets the value of the countryFlagResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryFlagResult() {
return countryFlagResult;
}
/**
* Sets the value of the countryFlagResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryFlagResult(String value) {
this.countryFlagResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryName"
})
@XmlRootElement(name = "CountryISOCode")
public class CountryISOCode {
@XmlElement(required = true)
protected String sCountryName;
/**
* Gets the value of the sCountryName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryName() {
return sCountryName;
}
/**
* Sets the value of the sCountryName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryName(String value) {
this.sCountryName = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountryISOCodeResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countryISOCodeResult"
})
@XmlRootElement(name = "CountryISOCodeResponse")
public class CountryISOCodeResponse {
@XmlElement(name = "CountryISOCodeResult", required = true)
protected String countryISOCodeResult;
/**
* Gets the value of the countryISOCodeResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryISOCodeResult() {
return countryISOCodeResult;
}
/**
* Sets the value of the countryISOCodeResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryISOCodeResult(String value) {
this.countryISOCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "CountryIntPhoneCode")
public class CountryIntPhoneCode {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountryIntPhoneCodeResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countryIntPhoneCodeResult"
})
@XmlRootElement(name = "CountryIntPhoneCodeResponse")
public class CountryIntPhoneCodeResponse {
@XmlElement(name = "CountryIntPhoneCodeResult", required = true)
protected String countryIntPhoneCodeResult;
/**
* Gets the value of the countryIntPhoneCodeResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryIntPhoneCodeResult() {
return countryIntPhoneCodeResult;
}
/**
* Sets the value of the countryIntPhoneCodeResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryIntPhoneCodeResult(String value) {
this.countryIntPhoneCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "CountryName")
public class CountryName {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CountryNameResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"countryNameResult"
})
@XmlRootElement(name = "CountryNameResponse")
public class CountryNameResponse {
@XmlElement(name = "CountryNameResult", required = true)
protected String countryNameResult;
/**
* Gets the value of the countryNameResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCountryNameResult() {
return countryNameResult;
}
/**
* Sets the value of the countryNameResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCountryNameResult(String value) {
this.countryNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCurrencyISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCurrencyISOCode"
})
@XmlRootElement(name = "CurrencyName")
public class CurrencyName {
@XmlElement(required = true)
protected String sCurrencyISOCode;
/**
* Gets the value of the sCurrencyISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCurrencyISOCode() {
return sCurrencyISOCode;
}
/**
* Sets the value of the sCurrencyISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCurrencyISOCode(String value) {
this.sCurrencyISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="CurrencyNameResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"currencyNameResult"
})
@XmlRootElement(name = "CurrencyNameResponse")
public class CurrencyNameResponse {
@XmlElement(name = "CurrencyNameResult", required = true)
protected String currencyNameResult;
/**
* Gets the value of the currencyNameResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCurrencyNameResult() {
return currencyNameResult;
}
/**
* Sets the value of the currencyNameResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCurrencyNameResult(String value) {
this.currencyNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCountryISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sCountryISOCode"
})
@XmlRootElement(name = "FullCountryInfo")
public class FullCountryInfo {
@XmlElement(required = true)
protected String sCountryISOCode;
/**
* Gets the value of the sCountryISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryISOCode() {
return sCountryISOCode;
}
/**
* Sets the value of the sCountryISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryISOCode(String value) {
this.sCountryISOCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "FullCountryInfoAllCountries")
public class FullCountryInfoAllCountries {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FullCountryInfoAllCountriesResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryInfo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fullCountryInfoAllCountriesResult"
})
@XmlRootElement(name = "FullCountryInfoAllCountriesResponse")
public class FullCountryInfoAllCountriesResponse {
@XmlElement(name = "FullCountryInfoAllCountriesResult", required = true)
protected ArrayOftCountryInfo fullCountryInfoAllCountriesResult;
/**
* Gets the value of the fullCountryInfoAllCountriesResult property.
*
* @return
* possible object is
* {@link ArrayOftCountryInfo }
*
*/
public ArrayOftCountryInfo getFullCountryInfoAllCountriesResult() {
return fullCountryInfoAllCountriesResult;
}
/**
* Sets the value of the fullCountryInfoAllCountriesResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryInfo }
*
*/
public void setFullCountryInfoAllCountriesResult(ArrayOftCountryInfo value) {
this.fullCountryInfoAllCountriesResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="FullCountryInfoResult" type="{http://www.oorsprong.org/websamples.countryinfo}tCountryInfo"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"fullCountryInfoResult"
})
@XmlRootElement(name = "FullCountryInfoResponse")
public class FullCountryInfoResponse {
@XmlElement(name = "FullCountryInfoResult", required = true)
protected TCountryInfo fullCountryInfoResult;
/**
* Gets the value of the fullCountryInfoResult property.
*
* @return
* possible object is
* {@link TCountryInfo }
*
*/
public TCountryInfo getFullCountryInfoResult() {
return fullCountryInfoResult;
}
/**
* Sets the value of the fullCountryInfoResult property.
*
* @param value
* allowed object is
* {@link TCountryInfo }
*
*/
public void setFullCountryInfoResult(TCountryInfo value) {
this.fullCountryInfoResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sLanguageName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sLanguageName"
})
@XmlRootElement(name = "LanguageISOCode")
public class LanguageISOCode {
@XmlElement(required = true)
protected String sLanguageName;
/**
* Gets the value of the sLanguageName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSLanguageName() {
return sLanguageName;
}
/**
* Sets the value of the sLanguageName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSLanguageName(String value) {
this.sLanguageName = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LanguageISOCodeResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"languageISOCodeResult"
})
@XmlRootElement(name = "LanguageISOCodeResponse")
public class LanguageISOCodeResponse {
@XmlElement(name = "LanguageISOCodeResult", required = true)
protected String languageISOCodeResult;
/**
* Gets the value of the languageISOCodeResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguageISOCodeResult() {
return languageISOCodeResult;
}
/**
* Sets the value of the languageISOCodeResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguageISOCodeResult(String value) {
this.languageISOCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"sisoCode"
})
@XmlRootElement(name = "LanguageName")
public class LanguageName {
@XmlElement(name = "sISOCode", required = true)
protected String sisoCode;
/**
* Gets the value of the sisoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCode() {
return sisoCode;
}
/**
* Sets the value of the sisoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCode(String value) {
this.sisoCode = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="LanguageNameResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"languageNameResult"
})
@XmlRootElement(name = "LanguageNameResponse")
public class LanguageNameResponse {
@XmlElement(name = "LanguageNameResult", required = true)
protected String languageNameResult;
/**
* Gets the value of the languageNameResult property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguageNameResult() {
return languageNameResult;
}
/**
* Sets the value of the languageNameResult property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguageNameResult(String value) {
this.languageNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfContinentsByCode")
public class ListOfContinentsByCode {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfContinentsByCodeResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftContinent"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfContinentsByCodeResult"
})
@XmlRootElement(name = "ListOfContinentsByCodeResponse")
public class ListOfContinentsByCodeResponse {
@XmlElement(name = "ListOfContinentsByCodeResult", required = true)
protected ArrayOftContinent listOfContinentsByCodeResult;
/**
* Gets the value of the listOfContinentsByCodeResult property.
*
* @return
* possible object is
* {@link ArrayOftContinent }
*
*/
public ArrayOftContinent getListOfContinentsByCodeResult() {
return listOfContinentsByCodeResult;
}
/**
* Sets the value of the listOfContinentsByCodeResult property.
*
* @param value
* allowed object is
* {@link ArrayOftContinent }
*
*/
public void setListOfContinentsByCodeResult(ArrayOftContinent value) {
this.listOfContinentsByCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfContinentsByName")
public class ListOfContinentsByName {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfContinentsByNameResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftContinent"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfContinentsByNameResult"
})
@XmlRootElement(name = "ListOfContinentsByNameResponse")
public class ListOfContinentsByNameResponse {
@XmlElement(name = "ListOfContinentsByNameResult", required = true)
protected ArrayOftContinent listOfContinentsByNameResult;
/**
* Gets the value of the listOfContinentsByNameResult property.
*
* @return
* possible object is
* {@link ArrayOftContinent }
*
*/
public ArrayOftContinent getListOfContinentsByNameResult() {
return listOfContinentsByNameResult;
}
/**
* Sets the value of the listOfContinentsByNameResult property.
*
* @param value
* allowed object is
* {@link ArrayOftContinent }
*
*/
public void setListOfContinentsByNameResult(ArrayOftContinent value) {
this.listOfContinentsByNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfCountryNamesByCode")
public class ListOfCountryNamesByCode {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfCountryNamesByCodeResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndName"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfCountryNamesByCodeResult"
})
@XmlRootElement(name = "ListOfCountryNamesByCodeResponse")
public class ListOfCountryNamesByCodeResponse {
@XmlElement(name = "ListOfCountryNamesByCodeResult", required = true)
protected ArrayOftCountryCodeAndName listOfCountryNamesByCodeResult;
/**
* Gets the value of the listOfCountryNamesByCodeResult property.
*
* @return
* possible object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public ArrayOftCountryCodeAndName getListOfCountryNamesByCodeResult() {
return listOfCountryNamesByCodeResult;
}
/**
* Sets the value of the listOfCountryNamesByCodeResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public void setListOfCountryNamesByCodeResult(ArrayOftCountryCodeAndName value) {
this.listOfCountryNamesByCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfCountryNamesByName")
public class ListOfCountryNamesByName {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfCountryNamesByNameResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndName"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfCountryNamesByNameResult"
})
@XmlRootElement(name = "ListOfCountryNamesByNameResponse")
public class ListOfCountryNamesByNameResponse {
@XmlElement(name = "ListOfCountryNamesByNameResult", required = true)
protected ArrayOftCountryCodeAndName listOfCountryNamesByNameResult;
/**
* Gets the value of the listOfCountryNamesByNameResult property.
*
* @return
* possible object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public ArrayOftCountryCodeAndName getListOfCountryNamesByNameResult() {
return listOfCountryNamesByNameResult;
}
/**
* Sets the value of the listOfCountryNamesByNameResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public void setListOfCountryNamesByNameResult(ArrayOftCountryCodeAndName value) {
this.listOfCountryNamesByNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfCountryNamesGroupedByContinent")
public class ListOfCountryNamesGroupedByContinent {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfCountryNamesGroupedByContinentResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndNameGroupedByContinent"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfCountryNamesGroupedByContinentResult"
})
@XmlRootElement(name = "ListOfCountryNamesGroupedByContinentResponse")
public class ListOfCountryNamesGroupedByContinentResponse {
@XmlElement(name = "ListOfCountryNamesGroupedByContinentResult", required = true)
protected ArrayOftCountryCodeAndNameGroupedByContinent listOfCountryNamesGroupedByContinentResult;
/**
* Gets the value of the listOfCountryNamesGroupedByContinentResult property.
*
* @return
* possible object is
* {@link ArrayOftCountryCodeAndNameGroupedByContinent }
*
*/
public ArrayOftCountryCodeAndNameGroupedByContinent getListOfCountryNamesGroupedByContinentResult() {
return listOfCountryNamesGroupedByContinentResult;
}
/**
* Sets the value of the listOfCountryNamesGroupedByContinentResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryCodeAndNameGroupedByContinent }
*
*/
public void setListOfCountryNamesGroupedByContinentResult(ArrayOftCountryCodeAndNameGroupedByContinent value) {
this.listOfCountryNamesGroupedByContinentResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfCurrenciesByCode")
public class ListOfCurrenciesByCode {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfCurrenciesByCodeResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCurrency"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfCurrenciesByCodeResult"
})
@XmlRootElement(name = "ListOfCurrenciesByCodeResponse")
public class ListOfCurrenciesByCodeResponse {
@XmlElement(name = "ListOfCurrenciesByCodeResult", required = true)
protected ArrayOftCurrency listOfCurrenciesByCodeResult;
/**
* Gets the value of the listOfCurrenciesByCodeResult property.
*
* @return
* possible object is
* {@link ArrayOftCurrency }
*
*/
public ArrayOftCurrency getListOfCurrenciesByCodeResult() {
return listOfCurrenciesByCodeResult;
}
/**
* Sets the value of the listOfCurrenciesByCodeResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCurrency }
*
*/
public void setListOfCurrenciesByCodeResult(ArrayOftCurrency value) {
this.listOfCurrenciesByCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfCurrenciesByName")
public class ListOfCurrenciesByName {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfCurrenciesByNameResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCurrency"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfCurrenciesByNameResult"
})
@XmlRootElement(name = "ListOfCurrenciesByNameResponse")
public class ListOfCurrenciesByNameResponse {
@XmlElement(name = "ListOfCurrenciesByNameResult", required = true)
protected ArrayOftCurrency listOfCurrenciesByNameResult;
/**
* Gets the value of the listOfCurrenciesByNameResult property.
*
* @return
* possible object is
* {@link ArrayOftCurrency }
*
*/
public ArrayOftCurrency getListOfCurrenciesByNameResult() {
return listOfCurrenciesByNameResult;
}
/**
* Sets the value of the listOfCurrenciesByNameResult property.
*
* @param value
* allowed object is
* {@link ArrayOftCurrency }
*
*/
public void setListOfCurrenciesByNameResult(ArrayOftCurrency value) {
this.listOfCurrenciesByNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfLanguagesByCode")
public class ListOfLanguagesByCode {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfLanguagesByCodeResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftLanguage"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfLanguagesByCodeResult"
})
@XmlRootElement(name = "ListOfLanguagesByCodeResponse")
public class ListOfLanguagesByCodeResponse {
@XmlElement(name = "ListOfLanguagesByCodeResult", required = true)
protected ArrayOftLanguage listOfLanguagesByCodeResult;
/**
* Gets the value of the listOfLanguagesByCodeResult property.
*
* @return
* possible object is
* {@link ArrayOftLanguage }
*
*/
public ArrayOftLanguage getListOfLanguagesByCodeResult() {
return listOfLanguagesByCodeResult;
}
/**
* Sets the value of the listOfLanguagesByCodeResult property.
*
* @param value
* allowed object is
* {@link ArrayOftLanguage }
*
*/
public void setListOfLanguagesByCodeResult(ArrayOftLanguage value) {
this.listOfLanguagesByCodeResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ListOfLanguagesByName")
public class ListOfLanguagesByName {
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ListOfLanguagesByNameResult" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftLanguage"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"listOfLanguagesByNameResult"
})
@XmlRootElement(name = "ListOfLanguagesByNameResponse")
public class ListOfLanguagesByNameResponse {
@XmlElement(name = "ListOfLanguagesByNameResult", required = true)
protected ArrayOftLanguage listOfLanguagesByNameResult;
/**
* Gets the value of the listOfLanguagesByNameResult property.
*
* @return
* possible object is
* {@link ArrayOftLanguage }
*
*/
public ArrayOftLanguage getListOfLanguagesByNameResult() {
return listOfLanguagesByNameResult;
}
/**
* Sets the value of the listOfLanguagesByNameResult property.
*
* @param value
* allowed object is
* {@link ArrayOftLanguage }
*
*/
public void setListOfLanguagesByNameResult(ArrayOftLanguage value) {
this.listOfLanguagesByNameResult = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tContinent complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tContinent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tContinent", propOrder = {
"sCode",
"sName"
})
public class TContinent {
@XmlElement(required = true)
protected String sCode;
@XmlElement(required = true)
protected String sName;
/**
* Gets the value of the sCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCode() {
return sCode;
}
/**
* Sets the value of the sCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCode(String value) {
this.sCode = value;
}
/**
* Gets the value of the sName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSName() {
return sName;
}
/**
* Sets the value of the sName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSName(String value) {
this.sName = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tCountryCodeAndName complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tCountryCodeAndName">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tCountryCodeAndName", propOrder = {
"sisoCode",
"sName"
})
public class TCountryCodeAndName {
@XmlElement(name = "sISOCode", required = true)
protected String sisoCode;
@XmlElement(required = true)
protected String sName;
/**
* Gets the value of the sisoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCode() {
return sisoCode;
}
/**
* Sets the value of the sisoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCode(String value) {
this.sisoCode = value;
}
/**
* Gets the value of the sName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSName() {
return sName;
}
/**
* Sets the value of the sName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSName(String value) {
this.sName = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tCountryCodeAndNameGroupedByContinent complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tCountryCodeAndNameGroupedByContinent">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Continent" type="{http://www.oorsprong.org/websamples.countryinfo}tContinent"/>
* <element name="CountryCodeAndNames" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftCountryCodeAndName"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tCountryCodeAndNameGroupedByContinent", propOrder = {
"continent",
"countryCodeAndNames"
})
public class TCountryCodeAndNameGroupedByContinent {
@XmlElement(name = "Continent", required = true)
protected TContinent continent;
@XmlElement(name = "CountryCodeAndNames", required = true)
protected ArrayOftCountryCodeAndName countryCodeAndNames;
/**
* Gets the value of the continent property.
*
* @return
* possible object is
* {@link TContinent }
*
*/
public TContinent getContinent() {
return continent;
}
/**
* Sets the value of the continent property.
*
* @param value
* allowed object is
* {@link TContinent }
*
*/
public void setContinent(TContinent value) {
this.continent = value;
}
/**
* Gets the value of the countryCodeAndNames property.
*
* @return
* possible object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public ArrayOftCountryCodeAndName getCountryCodeAndNames() {
return countryCodeAndNames;
}
/**
* Sets the value of the countryCodeAndNames property.
*
* @param value
* allowed object is
* {@link ArrayOftCountryCodeAndName }
*
*/
public void setCountryCodeAndNames(ArrayOftCountryCodeAndName value) {
this.countryCodeAndNames = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tCountryInfo complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tCountryInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sCapitalCity" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sPhoneCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sContinentCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sCurrencyISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sCountryFlag" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="Languages" type="{http://www.oorsprong.org/websamples.countryinfo}ArrayOftLanguage"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tCountryInfo", propOrder = {
"sisoCode",
"sName",
"sCapitalCity",
"sPhoneCode",
"sContinentCode",
"sCurrencyISOCode",
"sCountryFlag",
"languages"
})
public class TCountryInfo {
@XmlElement(name = "sISOCode", required = true)
protected String sisoCode;
@XmlElement(required = true)
protected String sName;
@XmlElement(required = true)
protected String sCapitalCity;
@XmlElement(required = true)
protected String sPhoneCode;
@XmlElement(required = true)
protected String sContinentCode;
@XmlElement(required = true)
protected String sCurrencyISOCode;
@XmlElement(required = true)
protected String sCountryFlag;
@XmlElement(name = "Languages", required = true)
protected ArrayOftLanguage languages;
/**
* Gets the value of the sisoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCode() {
return sisoCode;
}
/**
* Sets the value of the sisoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCode(String value) {
this.sisoCode = value;
}
/**
* Gets the value of the sName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSName() {
return sName;
}
/**
* Sets the value of the sName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSName(String value) {
this.sName = value;
}
/**
* Gets the value of the sCapitalCity property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCapitalCity() {
return sCapitalCity;
}
/**
* Sets the value of the sCapitalCity property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCapitalCity(String value) {
this.sCapitalCity = value;
}
/**
* Gets the value of the sPhoneCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSPhoneCode() {
return sPhoneCode;
}
/**
* Sets the value of the sPhoneCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSPhoneCode(String value) {
this.sPhoneCode = value;
}
/**
* Gets the value of the sContinentCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSContinentCode() {
return sContinentCode;
}
/**
* Sets the value of the sContinentCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSContinentCode(String value) {
this.sContinentCode = value;
}
/**
* Gets the value of the sCurrencyISOCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCurrencyISOCode() {
return sCurrencyISOCode;
}
/**
* Sets the value of the sCurrencyISOCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCurrencyISOCode(String value) {
this.sCurrencyISOCode = value;
}
/**
* Gets the value of the sCountryFlag property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSCountryFlag() {
return sCountryFlag;
}
/**
* Sets the value of the sCountryFlag property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSCountryFlag(String value) {
this.sCountryFlag = value;
}
/**
* Gets the value of the languages property.
*
* @return
* possible object is
* {@link ArrayOftLanguage }
*
*/
public ArrayOftLanguage getLanguages() {
return languages;
}
/**
* Sets the value of the languages property.
*
* @param value
* allowed object is
* {@link ArrayOftLanguage }
*
*/
public void setLanguages(ArrayOftLanguage value) {
this.languages = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tCurrency complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tCurrency">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tCurrency", propOrder = {
"sisoCode",
"sName"
})
public class TCurrency {
@XmlElement(name = "sISOCode", required = true)
protected String sisoCode;
@XmlElement(required = true)
protected String sName;
/**
* Gets the value of the sisoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCode() {
return sisoCode;
}
/**
* Sets the value of the sisoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCode(String value) {
this.sisoCode = value;
}
/**
* Gets the value of the sName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSName() {
return sName;
}
/**
* Sets the value of the sName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSName(String value) {
this.sName = value;
}
}
package org.oorsprong.websamples;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for tLanguage complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>{@code
* <complexType name="tLanguage">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="sISOCode" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="sName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* }</pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "tLanguage", propOrder = {
"sisoCode",
"sName"
})
public class TLanguage {
@XmlElement(name = "sISOCode", required = true)
protected String sisoCode;
@XmlElement(required = true)
protected String sName;
/**
* Gets the value of the sisoCode property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSISOCode() {
return sisoCode;
}
/**
* Sets the value of the sisoCode property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSISOCode(String value) {
this.sisoCode = value;
}
/**
* Gets the value of the sName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSName() {
return sName;
}
/**
* Sets the value of the sName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSName(String value) {
this.sName = value;
}
}
@jakarta.xml.bind.annotation.XmlSchema(namespace = "http://www.oorsprong.org/websamples.countryinfo", elementFormDefault = jakarta.xml.bind.annotation.XmlNsForm.QUALIFIED)
package org.oorsprong.websamples;
package org.oorsprong.websamples_countryinfo;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import jakarta.xml.ws.WebEndpoint;
import jakarta.xml.ws.WebServiceClient;
import jakarta.xml.ws.WebServiceFeature;
import jakarta.xml.ws.Service;
/**
* This DataFlex Web Service opens up country information. 2 letter ISO codes are used for Country code. There are functions to retrieve the used Currency, Language, Capital City, Continent and Telephone code.
*
* This class was generated by Apache CXF 4.0.0
* 2023-08-03T15:38:49.325+02:00
* Generated source version: 4.0.0
*
*/
@WebServiceClient(name = "CountryInfoService",
wsdlLocation = "http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl",
targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public class CountryInfoService extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://www.oorsprong.org/websamples.countryinfo", "CountryInfoService");
public final static QName CountryInfoServiceSoap12 = new QName("http://www.oorsprong.org/websamples.countryinfo", "CountryInfoServiceSoap12");
public final static QName CountryInfoServiceSoap = new QName("http://www.oorsprong.org/websamples.countryinfo", "CountryInfoServiceSoap");
static {
URL url = null;
try {
url = new URL("http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl");
} catch (MalformedURLException e) {
java.util.logging.Logger.getLogger(CountryInfoService.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "http://webservices.oorsprong.org/websamples.countryinfo/CountryInfoService.wso?wsdl");
}
WSDL_LOCATION = url;
}
public CountryInfoService(URL wsdlLocation) {
super(wsdlLocation, SERVICE);
}
public CountryInfoService(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}
public CountryInfoService() {
super(WSDL_LOCATION, SERVICE);
}
public CountryInfoService(WebServiceFeature ... features) {
super(WSDL_LOCATION, SERVICE, features);
}
public CountryInfoService(URL wsdlLocation, WebServiceFeature ... features) {
super(wsdlLocation, SERVICE, features);
}
public CountryInfoService(URL wsdlLocation, QName serviceName, WebServiceFeature ... features) {
super(wsdlLocation, serviceName, features);
}
/**
*
* @return
* returns CountryInfoServiceSoapType
*/
@WebEndpoint(name = "CountryInfoServiceSoap12")
public CountryInfoServiceSoapType getCountryInfoServiceSoap12() {
return super.getPort(CountryInfoServiceSoap12, CountryInfoServiceSoapType.class);
}
/**
*
* @param features
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns CountryInfoServiceSoapType
*/
@WebEndpoint(name = "CountryInfoServiceSoap12")
public CountryInfoServiceSoapType getCountryInfoServiceSoap12(WebServiceFeature... features) {
return super.getPort(CountryInfoServiceSoap12, CountryInfoServiceSoapType.class, features);
}
/**
*
* @return
* returns CountryInfoServiceSoapType
*/
@WebEndpoint(name = "CountryInfoServiceSoap")
public CountryInfoServiceSoapType getCountryInfoServiceSoap() {
return super.getPort(CountryInfoServiceSoap, CountryInfoServiceSoapType.class);
}
/**
*
* @param features
* A list of {@link jakarta.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
* @return
* returns CountryInfoServiceSoapType
*/
@WebEndpoint(name = "CountryInfoServiceSoap")
public CountryInfoServiceSoapType getCountryInfoServiceSoap(WebServiceFeature... features) {
return super.getPort(CountryInfoServiceSoap, CountryInfoServiceSoapType.class, features);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment