com.genexus.gxserver.client.services.contracts.TransferProp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gxserver-client Show documentation
Show all versions of gxserver-client Show documentation
Java client for GeneXus Server services
The newest version!
package com.genexus.gxserver.client.services.contracts;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for TransferProp complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="TransferProp">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="XmlProperties" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TransferProp", propOrder = {
"name",
"xmlProperties"
})
@XmlSeeAlso({
DateTimeProp.class,
GuidProp.class,
IntProp.class,
StringProp.class,
BoolProp.class,
XmlProp.class,
LongProp.class
})
public class TransferProp {
@XmlElement(name = "Name", nillable = true)
protected String name;
@XmlElement(name = "XmlProperties", nillable = true)
protected String xmlProperties;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the xmlProperties property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getXmlProperties() {
return xmlProperties;
}
/**
* Sets the value of the xmlProperties property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setXmlProperties(String value) {
this.xmlProperties = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy