com.payline.ws.model.ConnectionData 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.XmlType;
/**
*
* This element contains the merchant connection
* parameters
*
*
* Java class for connectionData complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="connectionData">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="merchantId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="userId" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="secretQuestion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="secretAnswer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "connectionData", namespace = "http://obj.ws.payline.experian.com", propOrder = {
"merchantId",
"userId",
"password",
"secretQuestion",
"secretAnswer"
})
public class ConnectionData {
@XmlElement(required = true)
protected String merchantId;
@XmlElement(required = true)
protected String userId;
@XmlElement(required = true)
protected String password;
@XmlElement(required = true)
protected String secretQuestion;
@XmlElement(required = true)
protected String secretAnswer;
/**
* Gets the value of the merchantId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMerchantId() {
return merchantId;
}
/**
* Sets the value of the merchantId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMerchantId(String value) {
this.merchantId = value;
}
/**
* Gets the value of the userId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUserId() {
return userId;
}
/**
* Sets the value of the userId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUserId(String value) {
this.userId = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the secretQuestion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSecretQuestion() {
return secretQuestion;
}
/**
* Sets the value of the secretQuestion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSecretQuestion(String value) {
this.secretQuestion = value;
}
/**
* Gets the value of the secretAnswer property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSecretAnswer() {
return secretAnswer;
}
/**
* Sets the value of the secretAnswer property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSecretAnswer(String value) {
this.secretAnswer = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy