package com.sun.xml.ws.test.xbeandoc; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.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> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{http://www.bea.com/wli/sb/transports/ejb/test/xbean}Countries"/> * <element name="param1" type="{http://www.bea.com/wli/sb/transports/ejb/test/xbean}code"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "countries", "param1" }) @XmlRootElement(name = "getCountryNameXml") public class GetCountryNameXml { @XmlElement(name = "Countries", namespace = "http://www.bea.com/wli/sb/transports/ejb/test/xbean", required = true) protected Countries countries; @XmlElement(required = true) protected String param1; /** * Gets the value of the countries property. * * @return * possible object is * {@link Countries } * */ public Countries getCountries() { return countries; } /** * Sets the value of the countries property. * * @param value * allowed object is * {@link Countries } * */ public void setCountries(Countries value) { this.countries = value; } /** * Gets the value of the param1 property. * * @return * possible object is * {@link String } * */ public String getParam1() { return param1; } /** * Sets the value of the param1 property. * * @param value * allowed object is * {@link String } * */ public void setParam1(String value) { this.param1 = value; } }