All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.gxserver.client.services.teamwork.FileTransfer Maven / Gradle / Ivy

The newest version!

package com.genexus.gxserver.client.services.teamwork;

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;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}FileByteStream"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "fileByteStream" }) @XmlRootElement(name = "FileTransfer") public class FileTransfer { @XmlElement(name = "FileByteStream", namespace = "http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts", required = true) protected byte[] fileByteStream; /** * Gets the value of the fileByteStream property. * * @return * possible object is * byte[] */ public byte[] getFileByteStream() { return fileByteStream; } /** * Sets the value of the fileByteStream property. * * @param value * allowed object is * byte[] */ public void setFileByteStream(byte[] value) { this.fileByteStream = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy