vlc.j2c-operation-fault-info.vm Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of legstar-jaxws-generator Show documentation
Show all versions of legstar-jaxws-generator Show documentation
Generates adapters and proxies for inbound and outbound mainframe integration with Web Services.
##/////////////////////////////////////////////////////////////////////
##Jaxws Operation Fault Information Velocity Template.
##@author Fady
##/////////////////////////////////////////////////////////////////////
#if(${cixsOperation.packageName})
package ${cixsOperation.packageName};
#end
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* LegStar/Jaxws Operation fault information.
* Describes an error situation.
*
* This class was generated by ${generatorName}.
*/
@XmlRootElement(name = "${cixsOperation.faultInfoType}")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "${cixsOperation.faultInfoType}",
namespace = "${cixsOperation.namespace}",
propOrder = {
"detail",
"message"
})
public class ${cixsOperation.faultInfoType} {
/** Detailed fault description. */
private String detail;
/** Summary fault description. */
private String message;
/**
* 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(final String value) {
this.detail = value;
}
/**
* Gets the value of the message property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMessage() {
return message;
}
/**
* Sets the value of the message property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMessage(final String value) {
this.message = value;
}
}