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

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

There is a newer version: 3.24
Show 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="createAssetResult" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newAssetHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newExtensionHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="newExtensionName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "createAssetResult", "newAssetHandle", "newExtensionHandle", "newExtensionName" }) @XmlRootElement(name = "createAssetResponse") public class CreateAssetResponse { @XmlElement(required = true) protected String createAssetResult; @XmlElement(required = true) protected String newAssetHandle; @XmlElement(required = true) protected String newExtensionHandle; @XmlElement(required = true) protected String newExtensionName; /** * Gets the value of the createAssetResult property. * * @return * possible object is * {@link String } * */ public String getCreateAssetResult() { return createAssetResult; } /** * Sets the value of the createAssetResult property. * * @param value * allowed object is * {@link String } * */ public void setCreateAssetResult(String value) { this.createAssetResult = value; } /** * Gets the value of the newAssetHandle property. * * @return * possible object is * {@link String } * */ public String getNewAssetHandle() { return newAssetHandle; } /** * Sets the value of the newAssetHandle property. * * @param value * allowed object is * {@link String } * */ public void setNewAssetHandle(String value) { this.newAssetHandle = value; } /** * Gets the value of the newExtensionHandle property. * * @return * possible object is * {@link String } * */ public String getNewExtensionHandle() { return newExtensionHandle; } /** * Sets the value of the newExtensionHandle property. * * @param value * allowed object is * {@link String } * */ public void setNewExtensionHandle(String value) { this.newExtensionHandle = value; } /** * Gets the value of the newExtensionName property. * * @return * possible object is * {@link String } * */ public String getNewExtensionName() { return newExtensionName; } /** * Sets the value of the newExtensionName property. * * @param value * allowed object is * {@link String } * */ public void setNewExtensionName(String value) { this.newExtensionName = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy