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

com.adlibsoftware.client.UpdateActionRequestById 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="actionRequestId" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="status" type="{http://schemas.datacontract.org/2004/07/Adlib.Shared.Enums}RepositoryActionRequestStatus" minOccurs="0"/>
 *         <element name="resultXml" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "actionRequestId", "status", "resultXml" }) @XmlRootElement(name = "UpdateActionRequestById") public class UpdateActionRequestById { protected Integer actionRequestId; @XmlSchemaType(name = "string") protected RepositoryActionRequestStatus status; @XmlElementRef(name = "resultXml", namespace = "http://adlibsoftware.com/", type = JAXBElement.class, required = false) protected JAXBElement resultXml; /** * Gets the value of the actionRequestId property. * * @return * possible object is * {@link Integer } * */ public Integer getActionRequestId() { return actionRequestId; } /** * Sets the value of the actionRequestId property. * * @param value * allowed object is * {@link Integer } * */ public void setActionRequestId(Integer value) { this.actionRequestId = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link RepositoryActionRequestStatus } * */ public RepositoryActionRequestStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link RepositoryActionRequestStatus } * */ public void setStatus(RepositoryActionRequestStatus value) { this.status = value; } /** * Gets the value of the resultXml property. * * @return * possible object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public JAXBElement getResultXml() { return resultXml; } /** * Sets the value of the resultXml property. * * @param value * allowed object is * {@link JAXBElement }{@code <}{@link String }{@code >} * */ public void setResultXml(JAXBElement value) { this.resultXml = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy