package com.experian.payline.ws.obj; 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 * * * <p>Java class for connectionData complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <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> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "connectionData", 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; } }