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

com.adlibsoftware.client.EndPutJobFile 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.XmlSchemaType;
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="filePartContext" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="hashAlgorithm" type="{http://schemas.datacontract.org/2004/07/Adlib.Public.Enums}HashAlgorithm" minOccurs="0"/>
 *         <element name="hashValue" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "filePartContext", "hashAlgorithm", "hashValue" }) @XmlRootElement(name = "EndPutJobFile") public class EndPutJobFile { @XmlElementRef(name = "filePartContext", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement filePartContext; @XmlSchemaType(name = "string") protected HashAlgorithm hashAlgorithm; @XmlElementRef(name = "hashValue", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement hashValue; /** * Gets the value of the filePartContext property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getFilePartContext() { return filePartContext; } /** * Sets the value of the filePartContext property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setFilePartContext(JAXBElement value) { this.filePartContext = value; } /** * Gets the value of the hashAlgorithm property. * * @return * possible object is * {@link HashAlgorithm } * */ public HashAlgorithm getHashAlgorithm() { return hashAlgorithm; } /** * Sets the value of the hashAlgorithm property. * * @param value * allowed object is * {@link HashAlgorithm } * */ public void setHashAlgorithm(HashAlgorithm value) { this.hashAlgorithm = value; } /** * Gets the value of the hashValue property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public JAXBElement getHashValue() { return hashValue; } /** * Sets the value of the hashValue property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link byte[]}{@code >} * */ public void setHashValue(JAXBElement value) { this.hashValue = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy