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

com.adlibsoftware.client.BeginSubmitFile Maven / Gradle / Ivy


package com.adlibsoftware.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.XmlRootElement;
import javax.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 name="repositoryName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="locationName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="file" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Objects}JobFile" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "repositoryName", "locationName", "file" }) @XmlRootElement(name = "BeginSubmitFile") public class BeginSubmitFile { @XmlElementRef(name = "repositoryName", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement repositoryName; @XmlElementRef(name = "locationName", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement locationName; @XmlElementRef(name = "file", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement file; /** * Gets the value of the repositoryName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getRepositoryName() { return repositoryName; } /** * Sets the value of the repositoryName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setRepositoryName(JAXBElement value) { this.repositoryName = value; } /** * Gets the value of the locationName property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getLocationName() { return locationName; } /** * Sets the value of the locationName property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setLocationName(JAXBElement value) { this.locationName = value; } /** * Gets the value of the file property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link JobFile }{@code >} * */ public JAXBElement getFile() { return file; } /** * Sets the value of the file property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link JobFile }{@code >} * */ public void setFile(JAXBElement value) { this.file = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy