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

com.ca.www.UnicenterServicePlus.ServiceDesk.AttachChangeToRequest Maven / Gradle / Ivy

The newest version!

package com.ca.www.UnicenterServicePlus.ServiceDesk;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
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="sid" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="creator" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="requestHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="changeHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="changeAttrVals" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sid", "creator", "requestHandle", "changeHandle", "changeAttrVals", "description" }) @XmlRootElement(name = "attachChangeToRequest") public class AttachChangeToRequest { protected int sid; @XmlElement(required = true) protected String creator; @XmlElement(required = true) protected String requestHandle; @XmlElement(required = true) protected String changeHandle; @XmlElement(required = true) protected ArrayOfString changeAttrVals; @XmlElement(required = true) protected String description; /** * Gets the value of the sid property. * */ public int getSid() { return sid; } /** * Sets the value of the sid property. * */ public void setSid(int value) { this.sid = value; } /** * Gets the value of the creator property. * * @return * possible object is * {@link String } * */ public String getCreator() { return creator; } /** * Sets the value of the creator property. * * @param value * allowed object is * {@link String } * */ public void setCreator(String value) { this.creator = value; } /** * Gets the value of the requestHandle property. * * @return * possible object is * {@link String } * */ public String getRequestHandle() { return requestHandle; } /** * Sets the value of the requestHandle property. * * @param value * allowed object is * {@link String } * */ public void setRequestHandle(String value) { this.requestHandle = value; } /** * Gets the value of the changeHandle property. * * @return * possible object is * {@link String } * */ public String getChangeHandle() { return changeHandle; } /** * Sets the value of the changeHandle property. * * @param value * allowed object is * {@link String } * */ public void setChangeHandle(String value) { this.changeHandle = value; } /** * Gets the value of the changeAttrVals property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getChangeAttrVals() { return changeAttrVals; } /** * Sets the value of the changeAttrVals property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setChangeAttrVals(ArrayOfString value) { this.changeAttrVals = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy