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.XmlRegistry;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.oorsprong.websamples package.
* <p>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 {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.oorsprong.websamples
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link ListOfContinentsByName }
*
* @return
* the new instance of {@link ListOfContinentsByName }
*/
public ListOfContinentsByName createListOfContinentsByName() {
return new ListOfContinentsByName();
}
/**
* Create an instance of {@link ListOfContinentsByNameResponse }
*
* @return
* the new instance of {@link ListOfContinentsByNameResponse }
*/
public ListOfContinentsByNameResponse createListOfContinentsByNameResponse() {
return new ListOfContinentsByNameResponse();
}
/**
* Create an instance of {@link ArrayOftContinent }
*
* @return
* the new instance of {@link ArrayOftContinent }
*/
public ArrayOftContinent createArrayOftContinent() {
return new ArrayOftContinent();
}
/**
* Create an instance of {@link ListOfContinentsByCode }
*
* @return
* the new instance of {@link ListOfContinentsByCode }
*/
public ListOfContinentsByCode createListOfContinentsByCode() {
return new ListOfContinentsByCode();
}
/**
* Create an instance of {@link ListOfContinentsByCodeResponse }
*
* @return
* the new instance of {@link ListOfContinentsByCodeResponse }
*/
public ListOfContinentsByCodeResponse createListOfContinentsByCodeResponse() {
return new ListOfContinentsByCodeResponse();
}
/**
* Create an instance of {@link ListOfCurrenciesByName }
*
* @return
* the new instance of {@link ListOfCurrenciesByName }
*/
public ListOfCurrenciesByName createListOfCurrenciesByName() {
return new ListOfCurrenciesByName();
}
/**
* Create an instance of {@link ListOfCurrenciesByNameResponse }
*
* @return
* the new instance of {@link ListOfCurrenciesByNameResponse }
*/
public ListOfCurrenciesByNameResponse createListOfCurrenciesByNameResponse() {
return new ListOfCurrenciesByNameResponse();
}
/**
* Create an instance of {@link ArrayOftCurrency }
*
* @return
* the new instance of {@link ArrayOftCurrency }
*/
public ArrayOftCurrency createArrayOftCurrency() {
return new ArrayOftCurrency();
}
/**
* Create an instance of {@link ListOfCurrenciesByCode }
*
* @return
* the new instance of {@link ListOfCurrenciesByCode }
*/
public ListOfCurrenciesByCode createListOfCurrenciesByCode() {
return new ListOfCurrenciesByCode();
}
/**
* Create an instance of {@link ListOfCurrenciesByCodeResponse }
*
* @return
* the new instance of {@link ListOfCurrenciesByCodeResponse }
*/
public ListOfCurrenciesByCodeResponse createListOfCurrenciesByCodeResponse() {
return new ListOfCurrenciesByCodeResponse();
}
/**
* Create an instance of {@link CurrencyName }
*
* @return
* the new instance of {@link CurrencyName }
*/
public CurrencyName createCurrencyName() {
return new CurrencyName();
}
/**
* Create an instance of {@link CurrencyNameResponse }
*
* @return
* the new instance of {@link CurrencyNameResponse }
*/
public CurrencyNameResponse createCurrencyNameResponse() {
return new CurrencyNameResponse();
}
/**
* Create an instance of {@link ListOfCountryNamesByCode }
*
* @return
* the new instance of {@link ListOfCountryNamesByCode }
*/
public ListOfCountryNamesByCode createListOfCountryNamesByCode() {
return new ListOfCountryNamesByCode();
}
/**
* Create an instance of {@link ListOfCountryNamesByCodeResponse }
*
* @return
* the new instance of {@link ListOfCountryNamesByCodeResponse }
*/
public ListOfCountryNamesByCodeResponse createListOfCountryNamesByCodeResponse() {
return new ListOfCountryNamesByCodeResponse();
}
/**
* Create an instance of {@link ArrayOftCountryCodeAndName }
*
* @return
* the new instance of {@link ArrayOftCountryCodeAndName }
*/
public ArrayOftCountryCodeAndName createArrayOftCountryCodeAndName() {
return new ArrayOftCountryCodeAndName();
}
/**
* Create an instance of {@link ListOfCountryNamesByName }
*
* @return
* the new instance of {@link ListOfCountryNamesByName }
*/
public ListOfCountryNamesByName createListOfCountryNamesByName() {
return new ListOfCountryNamesByName();
}
/**
* Create an instance of {@link ListOfCountryNamesByNameResponse }
*
* @return
* the new instance of {@link ListOfCountryNamesByNameResponse }
*/
public ListOfCountryNamesByNameResponse createListOfCountryNamesByNameResponse() {
return new ListOfCountryNamesByNameResponse();
}
/**
* Create an instance of {@link ListOfCountryNamesGroupedByContinent }
*
* @return
* the new instance of {@link ListOfCountryNamesGroupedByContinent }
*/
public ListOfCountryNamesGroupedByContinent createListOfCountryNamesGroupedByContinent() {
return new ListOfCountryNamesGroupedByContinent();
}
/**
* Create an instance of {@link ListOfCountryNamesGroupedByContinentResponse }
*
* @return
* the new instance of {@link ListOfCountryNamesGroupedByContinentResponse }
*/
public ListOfCountryNamesGroupedByContinentResponse createListOfCountryNamesGroupedByContinentResponse() {
return new ListOfCountryNamesGroupedByContinentResponse();
}
/**
* Create an instance of {@link ArrayOftCountryCodeAndNameGroupedByContinent }
*
* @return
* the new instance of {@link ArrayOftCountryCodeAndNameGroupedByContinent }
*/
public ArrayOftCountryCodeAndNameGroupedByContinent createArrayOftCountryCodeAndNameGroupedByContinent() {
return new ArrayOftCountryCodeAndNameGroupedByContinent();
}
/**
* Create an instance of {@link CountryName }
*
* @return
* the new instance of {@link CountryName }
*/
public CountryName createCountryName() {
return new CountryName();
}
/**
* Create an instance of {@link CountryNameResponse }
*
* @return
* the new instance of {@link CountryNameResponse }
*/
public CountryNameResponse createCountryNameResponse() {
return new CountryNameResponse();
}
/**
* Create an instance of {@link CountryISOCode }
*
* @return
* the new instance of {@link CountryISOCode }
*/
public CountryISOCode createCountryISOCode() {
return new CountryISOCode();
}
/**
* Create an instance of {@link CountryISOCodeResponse }
*
* @return
* the new instance of {@link CountryISOCodeResponse }
*/
public CountryISOCodeResponse createCountryISOCodeResponse() {
return new CountryISOCodeResponse();
}
/**
* Create an instance of {@link CapitalCity }
*
* @return
* the new instance of {@link CapitalCity }
*/
public CapitalCity createCapitalCity() {
return new CapitalCity();
}
/**
* Create an instance of {@link CapitalCityResponse }
*
* @return
* the new instance of {@link CapitalCityResponse }
*/
public CapitalCityResponse createCapitalCityResponse() {
return new CapitalCityResponse();
}
/**
* Create an instance of {@link CountryCurrency }
*
* @return
* the new instance of {@link CountryCurrency }
*/
public CountryCurrency createCountryCurrency() {
return new CountryCurrency();
}
/**
* Create an instance of {@link CountryCurrencyResponse }
*
* @return
* the new instance of {@link CountryCurrencyResponse }
*/
public CountryCurrencyResponse createCountryCurrencyResponse() {
return new CountryCurrencyResponse();
}
/**
* Create an instance of {@link TCurrency }
*
* @return
* the new instance of {@link TCurrency }
*/
public TCurrency createTCurrency() {
return new TCurrency();
}
/**
* Create an instance of {@link CountryFlag }
*
* @return
* the new instance of {@link CountryFlag }
*/
public CountryFlag createCountryFlag() {
return new CountryFlag();
}
/**
* Create an instance of {@link CountryFlagResponse }
*
* @return
* the new instance of {@link CountryFlagResponse }
*/
public CountryFlagResponse createCountryFlagResponse() {
return new CountryFlagResponse();
}
/**
* Create an instance of {@link CountryIntPhoneCode }
*
* @return
* the new instance of {@link CountryIntPhoneCode }
*/
public CountryIntPhoneCode createCountryIntPhoneCode() {
return new CountryIntPhoneCode();
}
/**
* Create an instance of {@link CountryIntPhoneCodeResponse }
*
* @return
* the new instance of {@link CountryIntPhoneCodeResponse }
*/
public CountryIntPhoneCodeResponse createCountryIntPhoneCodeResponse() {
return new CountryIntPhoneCodeResponse();
}
/**
* Create an instance of {@link FullCountryInfo }
*
* @return
* the new instance of {@link FullCountryInfo }
*/
public FullCountryInfo createFullCountryInfo() {
return new FullCountryInfo();
}
/**
* Create an instance of {@link FullCountryInfoResponse }
*
* @return
* the new instance of {@link FullCountryInfoResponse }
*/
public FullCountryInfoResponse createFullCountryInfoResponse() {
return new FullCountryInfoResponse();
}
/**
* Create an instance of {@link TCountryInfo }
*
* @return
* the new instance of {@link TCountryInfo }
*/
public TCountryInfo createTCountryInfo() {
return new TCountryInfo();
}
/**
* Create an instance of {@link FullCountryInfoAllCountries }
*
* @return
* the new instance of {@link FullCountryInfoAllCountries }
*/
public FullCountryInfoAllCountries createFullCountryInfoAllCountries() {
return new FullCountryInfoAllCountries();
}
/**
* Create an instance of {@link FullCountryInfoAllCountriesResponse }
*
* @return
* the new instance of {@link FullCountryInfoAllCountriesResponse }
*/
public FullCountryInfoAllCountriesResponse createFullCountryInfoAllCountriesResponse() {
return new FullCountryInfoAllCountriesResponse();
}
/**
* Create an instance of {@link ArrayOftCountryInfo }
*
* @return
* the new instance of {@link ArrayOftCountryInfo }
*/
public ArrayOftCountryInfo createArrayOftCountryInfo() {
return new ArrayOftCountryInfo();
}
/**
* Create an instance of {@link CountriesUsingCurrency }
*
* @return
* the new instance of {@link CountriesUsingCurrency }
*/
public CountriesUsingCurrency createCountriesUsingCurrency() {
return new CountriesUsingCurrency();
}
/**
* Create an instance of {@link CountriesUsingCurrencyResponse }
*
* @return
* the new instance of {@link CountriesUsingCurrencyResponse }
*/
public CountriesUsingCurrencyResponse createCountriesUsingCurrencyResponse() {
return new CountriesUsingCurrencyResponse();
}
/**
* Create an instance of {@link ListOfLanguagesByName }
*
* @return
* the new instance of {@link ListOfLanguagesByName }
*/
public ListOfLanguagesByName createListOfLanguagesByName() {
return new ListOfLanguagesByName();
}
/**
* Create an instance of {@link ListOfLanguagesByNameResponse }
*
* @return
* the new instance of {@link ListOfLanguagesByNameResponse }
*/
public ListOfLanguagesByNameResponse createListOfLanguagesByNameResponse() {
return new ListOfLanguagesByNameResponse();
}
/**
* Create an instance of {@link ArrayOftLanguage }
*
* @return
* the new instance of {@link ArrayOftLanguage }
*/
public ArrayOftLanguage createArrayOftLanguage() {
return new ArrayOftLanguage();
}
/**
* Create an instance of {@link ListOfLanguagesByCode }
*
* @return
* the new instance of {@link ListOfLanguagesByCode }
*/
public ListOfLanguagesByCode createListOfLanguagesByCode() {
return new ListOfLanguagesByCode();
}
/**
* Create an instance of {@link ListOfLanguagesByCodeResponse }
*
* @return
* the new instance of {@link ListOfLanguagesByCodeResponse }
*/
public ListOfLanguagesByCodeResponse createListOfLanguagesByCodeResponse() {
return new ListOfLanguagesByCodeResponse();
}
/**
* Create an instance of {@link LanguageName }
*
* @return
* the new instance of {@link LanguageName }
*/
public LanguageName createLanguageName() {
return new LanguageName();
}
/**
* Create an instance of {@link LanguageNameResponse }
*
* @return
* the new instance of {@link LanguageNameResponse }
*/
public LanguageNameResponse createLanguageNameResponse() {
return new LanguageNameResponse();
}
/**
* Create an instance of {@link LanguageISOCode }
*
* @return
* the new instance of {@link LanguageISOCode }
*/
public LanguageISOCode createLanguageISOCode() {
return new LanguageISOCode();
}
/**
* Create an instance of {@link LanguageISOCodeResponse }
*
* @return
* the new instance of {@link LanguageISOCodeResponse }
*/
public LanguageISOCodeResponse createLanguageISOCodeResponse() {
return new LanguageISOCodeResponse();
}
/**
* Create an instance of {@link TContinent }
*
* @return
* the new instance of {@link TContinent }
*/
public TContinent createTContinent() {
return new TContinent();
}
/**
* Create an instance of {@link TCountryCodeAndName }
*
* @return
* the new instance of {@link TCountryCodeAndName }
*/
public TCountryCodeAndName createTCountryCodeAndName() {
return new TCountryCodeAndName();
}
/**
* Create an instance of {@link TCountryCodeAndNameGroupedByContinent }
*
* @return
* the new instance of {@link TCountryCodeAndNameGroupedByContinent }
*/
public TCountryCodeAndNameGroupedByContinent createTCountryCodeAndNameGroupedByContinent() {
return new TCountryCodeAndNameGroupedByContinent();
}
/**
* Create an instance of {@link TLanguage }
*
* @return
* the new instance of {@link TLanguage }
*/
public TLanguage createTLanguage() {
return new 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.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);
}
}
package org.oorsprong.websamples_countryinfo;
import jakarta.jws.WebMethod;
import jakarta.jws.WebParam;
import jakarta.jws.WebResult;
import jakarta.jws.WebService;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.ws.RequestWrapper;
import jakarta.xml.ws.ResponseWrapper;
/**
* This class was generated by Apache CXF 4.0.0
* 2023-08-03T15:38:49.264+02:00
* Generated source version: 4.0.0
*
*/
@WebService(targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", name = "CountryInfoServiceSoapType")
@XmlSeeAlso({org.oorsprong.websamples.ObjectFactory.class})
public interface CountryInfoServiceSoapType {
/**
* Returns a struct with all the stored country information. Pass the ISO country code
*/
@WebMethod(operationName = "FullCountryInfo")
@RequestWrapper(localName = "FullCountryInfo", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.FullCountryInfo")
@ResponseWrapper(localName = "FullCountryInfoResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.FullCountryInfoResponse")
@WebResult(name = "FullCountryInfoResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.TCountryInfo fullCountryInfo(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Returns a link to a picture of the country flag
*/
@WebMethod(operationName = "CountryFlag")
@RequestWrapper(localName = "CountryFlag", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryFlag")
@ResponseWrapper(localName = "CountryFlagResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryFlagResponse")
@WebResult(name = "CountryFlagResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String countryFlag(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Searches the database for a country by the passed ISO country code
*/
@WebMethod(operationName = "CountryName")
@RequestWrapper(localName = "CountryName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryName")
@ResponseWrapper(localName = "CountryNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryNameResponse")
@WebResult(name = "CountryNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String countryName(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Returns the currency ISO code and name for the passed country ISO code
*/
@WebMethod(operationName = "CountryCurrency")
@RequestWrapper(localName = "CountryCurrency", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryCurrency")
@ResponseWrapper(localName = "CountryCurrencyResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryCurrencyResponse")
@WebResult(name = "CountryCurrencyResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.TCurrency countryCurrency(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Returns a list of all stored counties ordered by ISO code
*/
@WebMethod(operationName = "ListOfCountryNamesByCode")
@RequestWrapper(localName = "ListOfCountryNamesByCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesByCode")
@ResponseWrapper(localName = "ListOfCountryNamesByCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesByCodeResponse")
@WebResult(name = "ListOfCountryNamesByCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCountryCodeAndName listOfCountryNamesByCode()
;
/**
* Returns a list of currencies ordered by name.
*/
@WebMethod(operationName = "ListOfCurrenciesByName")
@RequestWrapper(localName = "ListOfCurrenciesByName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCurrenciesByName")
@ResponseWrapper(localName = "ListOfCurrenciesByNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCurrenciesByNameResponse")
@WebResult(name = "ListOfCurrenciesByNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCurrency listOfCurrenciesByName()
;
/**
* Returns the internation phone code for the passed ISO country code
*/
@WebMethod(operationName = "CountryIntPhoneCode")
@RequestWrapper(localName = "CountryIntPhoneCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryIntPhoneCode")
@ResponseWrapper(localName = "CountryIntPhoneCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryIntPhoneCodeResponse")
@WebResult(name = "CountryIntPhoneCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String countryIntPhoneCode(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Returns the name of the currency (if found)
*/
@WebMethod(operationName = "CurrencyName")
@RequestWrapper(localName = "CurrencyName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CurrencyName")
@ResponseWrapper(localName = "CurrencyNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CurrencyNameResponse")
@WebResult(name = "CurrencyNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String currencyName(
@WebParam(name = "sCurrencyISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCurrencyISOCode
);
/**
* Returns a list of currencies ordered by code.
*/
@WebMethod(operationName = "ListOfCurrenciesByCode")
@RequestWrapper(localName = "ListOfCurrenciesByCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCurrenciesByCode")
@ResponseWrapper(localName = "ListOfCurrenciesByCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCurrenciesByCodeResponse")
@WebResult(name = "ListOfCurrenciesByCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCurrency listOfCurrenciesByCode()
;
/**
* Returns an array of languages ordered by code
*/
@WebMethod(operationName = "ListOfLanguagesByCode")
@RequestWrapper(localName = "ListOfLanguagesByCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfLanguagesByCode")
@ResponseWrapper(localName = "ListOfLanguagesByCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfLanguagesByCodeResponse")
@WebResult(name = "ListOfLanguagesByCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftLanguage listOfLanguagesByCode()
;
/**
* Find a language ISO code based on the passed language name
*/
@WebMethod(operationName = "LanguageISOCode")
@RequestWrapper(localName = "LanguageISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.LanguageISOCode")
@ResponseWrapper(localName = "LanguageISOCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.LanguageISOCodeResponse")
@WebResult(name = "LanguageISOCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String languageISOCode(
@WebParam(name = "sLanguageName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sLanguageName
);
/**
* Returns the name of the captial city for the passed country code
*/
@WebMethod(operationName = "CapitalCity")
@RequestWrapper(localName = "CapitalCity", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CapitalCity")
@ResponseWrapper(localName = "CapitalCityResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CapitalCityResponse")
@WebResult(name = "CapitalCityResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String capitalCity(
@WebParam(name = "sCountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryISOCode
);
/**
* Returns an array of languages ordered by name
*/
@WebMethod(operationName = "ListOfLanguagesByName")
@RequestWrapper(localName = "ListOfLanguagesByName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfLanguagesByName")
@ResponseWrapper(localName = "ListOfLanguagesByNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfLanguagesByNameResponse")
@WebResult(name = "ListOfLanguagesByNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftLanguage listOfLanguagesByName()
;
/**
* Returns a list of all stored counties grouped per continent
*/
@WebMethod(operationName = "ListOfCountryNamesGroupedByContinent")
@RequestWrapper(localName = "ListOfCountryNamesGroupedByContinent", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesGroupedByContinent")
@ResponseWrapper(localName = "ListOfCountryNamesGroupedByContinentResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesGroupedByContinentResponse")
@WebResult(name = "ListOfCountryNamesGroupedByContinentResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCountryCodeAndNameGroupedByContinent listOfCountryNamesGroupedByContinent()
;
/**
* Returns a list of all stored counties ordered by country name
*/
@WebMethod(operationName = "ListOfCountryNamesByName")
@RequestWrapper(localName = "ListOfCountryNamesByName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesByName")
@ResponseWrapper(localName = "ListOfCountryNamesByNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfCountryNamesByNameResponse")
@WebResult(name = "ListOfCountryNamesByNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCountryCodeAndName listOfCountryNamesByName()
;
/**
* Returns a list of continents ordered by name.
*/
@WebMethod(operationName = "ListOfContinentsByName")
@RequestWrapper(localName = "ListOfContinentsByName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfContinentsByName")
@ResponseWrapper(localName = "ListOfContinentsByNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfContinentsByNameResponse")
@WebResult(name = "ListOfContinentsByNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftContinent listOfContinentsByName()
;
/**
* Find a language name based on the passed ISO language code
*/
@WebMethod(operationName = "LanguageName")
@RequestWrapper(localName = "LanguageName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.LanguageName")
@ResponseWrapper(localName = "LanguageNameResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.LanguageNameResponse")
@WebResult(name = "LanguageNameResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String languageName(
@WebParam(name = "sISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sISOCode
);
/**
* Returns a list of continents ordered by code.
*/
@WebMethod(operationName = "ListOfContinentsByCode")
@RequestWrapper(localName = "ListOfContinentsByCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfContinentsByCode")
@ResponseWrapper(localName = "ListOfContinentsByCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.ListOfContinentsByCodeResponse")
@WebResult(name = "ListOfContinentsByCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftContinent listOfContinentsByCode()
;
/**
* Returns a list of all countries that use the same currency code. Pass a ISO currency code
*/
@WebMethod(operationName = "CountriesUsingCurrency")
@RequestWrapper(localName = "CountriesUsingCurrency", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountriesUsingCurrency")
@ResponseWrapper(localName = "CountriesUsingCurrencyResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountriesUsingCurrencyResponse")
@WebResult(name = "CountriesUsingCurrencyResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCountryCodeAndName countriesUsingCurrency(
@WebParam(name = "sISOCurrencyCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sISOCurrencyCode
);
/**
* This function tries to found a country based on the passed country name.
*/
@WebMethod(operationName = "CountryISOCode")
@RequestWrapper(localName = "CountryISOCode", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryISOCode")
@ResponseWrapper(localName = "CountryISOCodeResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.CountryISOCodeResponse")
@WebResult(name = "CountryISOCodeResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public java.lang.String countryISOCode(
@WebParam(name = "sCountryName", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
java.lang.String sCountryName
);
/**
* Returns an array with all countries and all the language information stored
*/
@WebMethod(operationName = "FullCountryInfoAllCountries")
@RequestWrapper(localName = "FullCountryInfoAllCountries", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.FullCountryInfoAllCountries")
@ResponseWrapper(localName = "FullCountryInfoAllCountriesResponse", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo", className = "org.oorsprong.websamples.FullCountryInfoAllCountriesResponse")
@WebResult(name = "FullCountryInfoAllCountriesResult", targetNamespace = "http://www.oorsprong.org/websamples.countryinfo")
public org.oorsprong.websamples.ArrayOftCountryInfo fullCountryInfoAllCountries()
;
}
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