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

com.glookast.api.templates.TemplatesExceptionInfo Maven / Gradle / Ivy


package com.glookast.api.templates;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for TemplatesExceptionInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="TemplatesExceptionInfo">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="errorCode" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="detail" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TemplatesExceptionInfo", propOrder = { "errorCode", "description", "detail" }) public class TemplatesExceptionInfo implements Serializable { protected int errorCode; protected String description; protected String detail; /** * Default no-arg constructor * */ public TemplatesExceptionInfo() { super(); } /** * Fully-initialising value constructor * */ public TemplatesExceptionInfo(final int errorCode, final String description, final String detail) { this.errorCode = errorCode; this.description = description; this.detail = detail; } /** * Gets the value of the errorCode property. * */ public int getErrorCode() { return errorCode; } /** * Sets the value of the errorCode property. * */ public void setErrorCode(int value) { this.errorCode = 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; } /** * Gets the value of the detail property. * * @return * possible object is * {@link String } * */ public String getDetail() { return detail; } /** * Sets the value of the detail property. * * @param value * allowed object is * {@link String } * */ public void setDetail(String value) { this.detail = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy