package eu.aniketos.ncvm.pvm.client; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for verifyWSDL complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="verifyWSDL"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="arg0" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg1" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg2" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg3" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="arg4" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg5" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg6" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * <element name="arg7" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="arg8" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "verifyWSDL", propOrder = { "arg0", "arg1", "arg2", "arg3", "arg4", "arg5", "arg6", "arg7", "arg8" }) public class VerifyWSDL { @XmlElementRef(name = "arg0", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg0; @XmlElementRef(name = "arg1", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg1; @XmlElementRef(name = "arg2", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg2; protected int arg3; @XmlElementRef(name = "arg4", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg4; @XmlElementRef(name = "arg5", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg5; @XmlElementRef(name = "arg6", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg6; protected int arg7; @XmlElementRef(name = "arg8", namespace = "http://propertyverification.verification.components.aniketos.eu/", type = JAXBElement.class) protected JAXBElement<String> arg8; /** * Gets the value of the arg0 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg0() { return arg0; } /** * Sets the value of the arg0 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg0(JAXBElement<String> value) { this.arg0 = value; } /** * Gets the value of the arg1 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg1() { return arg1; } /** * Sets the value of the arg1 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg1(JAXBElement<String> value) { this.arg1 = value; } /** * Gets the value of the arg2 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg2() { return arg2; } /** * Sets the value of the arg2 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg2(JAXBElement<String> value) { this.arg2 = value; } /** * Gets the value of the arg3 property. * */ public int getArg3() { return arg3; } /** * Sets the value of the arg3 property. * */ public void setArg3(int value) { this.arg3 = value; } /** * Gets the value of the arg4 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg4() { return arg4; } /** * Sets the value of the arg4 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg4(JAXBElement<String> value) { this.arg4 = value; } /** * Gets the value of the arg5 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg5() { return arg5; } /** * Sets the value of the arg5 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg5(JAXBElement<String> value) { this.arg5 = value; } /** * Gets the value of the arg6 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg6() { return arg6; } /** * Sets the value of the arg6 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg6(JAXBElement<String> value) { this.arg6 = value; } /** * Gets the value of the arg7 property. * */ public int getArg7() { return arg7; } /** * Sets the value of the arg7 property. * */ public void setArg7(int value) { this.arg7 = value; } /** * Gets the value of the arg8 property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement<String> getArg8() { return arg8; } /** * Sets the value of the arg8 property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setArg8(JAXBElement<String> value) { this.arg8 = value; } }