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

com.payline.ws.model.Result Maven / Gradle / Ivy


package com.payline.ws.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 * 						This element contains information about the
 * 						process
 * 					
 * 
 * 

Java class for result complex type. * *

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

 * <complexType name="result">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="code" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="shortMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="longMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="partnerCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="partnerCodeLabel" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "result", namespace = "http://obj.ws.payline.experian.com", propOrder = { "code", "shortMessage", "longMessage", "partnerCode", "partnerCodeLabel" }) public class Result { @XmlElement(required = true) protected String code; @XmlElement(nillable = true) protected String shortMessage; @XmlElement(nillable = true) protected String longMessage; @XmlElement(nillable = true) protected String partnerCode; @XmlElement(nillable = true) protected String partnerCodeLabel; /** * Gets the value of the code property. * * @return * possible object is * {@link String } * */ public String getCode() { return code; } /** * Sets the value of the code property. * * @param value * allowed object is * {@link String } * */ public void setCode(String value) { this.code = value; } /** * Gets the value of the shortMessage property. * * @return * possible object is * {@link String } * */ public String getShortMessage() { return shortMessage; } /** * Sets the value of the shortMessage property. * * @param value * allowed object is * {@link String } * */ public void setShortMessage(String value) { this.shortMessage = value; } /** * Gets the value of the longMessage property. * * @return * possible object is * {@link String } * */ public String getLongMessage() { return longMessage; } /** * Sets the value of the longMessage property. * * @param value * allowed object is * {@link String } * */ public void setLongMessage(String value) { this.longMessage = value; } /** * Gets the value of the partnerCode property. * * @return * possible object is * {@link String } * */ public String getPartnerCode() { return partnerCode; } /** * Sets the value of the partnerCode property. * * @param value * allowed object is * {@link String } * */ public void setPartnerCode(String value) { this.partnerCode = value; } /** * Gets the value of the partnerCodeLabel property. * * @return * possible object is * {@link String } * */ public String getPartnerCodeLabel() { return partnerCodeLabel; } /** * Sets the value of the partnerCodeLabel property. * * @param value * allowed object is * {@link String } * */ public void setPartnerCodeLabel(String value) { this.partnerCodeLabel = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy