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

com.ca.www.UnicenterServicePlus.ServiceDesk.CreateChangeOrder 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="creatorHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="attrVals" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
 *         <element name="propertyValues" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
 *         <element name="template" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="attributes" type="{http://www.ca.com/UnicenterServicePlus/ServiceDesk}ArrayOfString"/>
 *         <element name="newChangeHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newChangeNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "sid", "creatorHandle", "attrVals", "propertyValues", "template", "attributes", "newChangeHandle", "newChangeNumber" }) @XmlRootElement(name = "createChangeOrder") public class CreateChangeOrder { protected int sid; @XmlElement(required = true) protected String creatorHandle; @XmlElement(required = true) protected ArrayOfString attrVals; @XmlElement(required = true) protected ArrayOfString propertyValues; @XmlElement(required = true) protected String template; @XmlElement(required = true) protected ArrayOfString attributes; @XmlElement(required = true) protected String newChangeHandle; @XmlElement(required = true) protected String newChangeNumber; /** * 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 creatorHandle property. * * @return * possible object is * {@link String } * */ public String getCreatorHandle() { return creatorHandle; } /** * Sets the value of the creatorHandle property. * * @param value * allowed object is * {@link String } * */ public void setCreatorHandle(String value) { this.creatorHandle = value; } /** * Gets the value of the attrVals property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getAttrVals() { return attrVals; } /** * Sets the value of the attrVals property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setAttrVals(ArrayOfString value) { this.attrVals = value; } /** * Gets the value of the propertyValues property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getPropertyValues() { return propertyValues; } /** * Sets the value of the propertyValues property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setPropertyValues(ArrayOfString value) { this.propertyValues = value; } /** * Gets the value of the template property. * * @return * possible object is * {@link String } * */ public String getTemplate() { return template; } /** * Sets the value of the template property. * * @param value * allowed object is * {@link String } * */ public void setTemplate(String value) { this.template = value; } /** * Gets the value of the attributes property. * * @return * possible object is * {@link ArrayOfString } * */ public ArrayOfString getAttributes() { return attributes; } /** * Sets the value of the attributes property. * * @param value * allowed object is * {@link ArrayOfString } * */ public void setAttributes(ArrayOfString value) { this.attributes = value; } /** * Gets the value of the newChangeHandle property. * * @return * possible object is * {@link String } * */ public String getNewChangeHandle() { return newChangeHandle; } /** * Sets the value of the newChangeHandle property. * * @param value * allowed object is * {@link String } * */ public void setNewChangeHandle(String value) { this.newChangeHandle = value; } /** * Gets the value of the newChangeNumber property. * * @return * possible object is * {@link String } * */ public String getNewChangeNumber() { return newChangeNumber; } /** * Sets the value of the newChangeNumber property. * * @param value * allowed object is * {@link String } * */ public void setNewChangeNumber(String value) { this.newChangeNumber = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy