com.payline.ws.model.VerifyAuthenticationRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payline-java-sdk Show documentation
Show all versions of payline-java-sdk Show documentation
The Payline API provides access to the various functions of the Payline payment solution. It is based on standard web service components, which include the SOAP protocol, the WSDL and XSD definition languages. These standards are supported by a large range of development tools on multiple platforms. This SDK covers all the functions of the Payline payment solution.
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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
*
* This element is the request for the
* doAuthentication method
*
*
* 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="transient" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="contractNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="pares" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="md" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="card" type="{http://obj.ws.payline.experian.com}card"/>
* <element name="privateDataList" type="{http://obj.ws.payline.experian.com}privateDataList"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"_transient",
"version",
"contractNumber",
"pares",
"md",
"card",
"privateDataList"
})
@XmlRootElement(name = "verifyAuthenticationRequest")
public class VerifyAuthenticationRequest {
@XmlElement(name = "transient", required = true, nillable = true)
protected String _transient;
@XmlElement(required = true)
protected String version;
@XmlElement(required = true)
protected String contractNumber;
@XmlElement(required = true)
protected String pares;
@XmlElement(required = true, nillable = true)
protected String md;
@XmlElement(required = true, nillable = true)
protected Card card;
@XmlElement(required = true, nillable = true)
protected PrivateDataList privateDataList;
/**
* Gets the value of the transient property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTransient() {
return _transient;
}
/**
* Sets the value of the transient property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTransient(String value) {
this._transient = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
/**
* Gets the value of the contractNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContractNumber() {
return contractNumber;
}
/**
* Sets the value of the contractNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContractNumber(String value) {
this.contractNumber = value;
}
/**
* Gets the value of the pares property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPares() {
return pares;
}
/**
* Sets the value of the pares property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPares(String value) {
this.pares = value;
}
/**
* Gets the value of the md property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMd() {
return md;
}
/**
* Sets the value of the md property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMd(String value) {
this.md = value;
}
/**
* Gets the value of the card property.
*
* @return
* possible object is
* {@link Card }
*
*/
public Card getCard() {
return card;
}
/**
* Sets the value of the card property.
*
* @param value
* allowed object is
* {@link Card }
*
*/
public void setCard(Card value) {
this.card = value;
}
/**
* Gets the value of the privateDataList property.
*
* @return
* possible object is
* {@link PrivateDataList }
*
*/
public PrivateDataList getPrivateDataList() {
return privateDataList;
}
/**
* Sets the value of the privateDataList property.
*
* @param value
* allowed object is
* {@link PrivateDataList }
*
*/
public void setPrivateDataList(PrivateDataList value) {
this.privateDataList = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy