eu.payzen.webservices.sdk.builder.request.CardRequestBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payzen-ws-sdk Show documentation
Show all versions of payzen-ws-sdk Show documentation
SDK to use Payzen SOAP Web Services
/*
* Copyright 2015-2018 Javier Garcia Alonso.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.payzen.webservices.sdk.builder.request;
import com.lyra.vads.ws.v5.CardRequest;
import java.util.Date;
import eu.payzen.webservices.sdk.util.BuilderUtils;
/**
* Builder class to help in the construction of a CardRequest
*
* @author Javier Garcia Alonso
*/
public class CardRequestBuilder {
private String number;
private String scheme;
private Integer expiryMonth;
private Integer expiryYear;
private String cardSecurityCode;
private Date cardHolderBirthDay;
private String paymentToken;
private String proofOfIdType;
private String proofOfIdNumber;
private String walletPayload;
private CardRequestBuilder() {
}
public static CardRequestBuilder create() {
return new CardRequestBuilder();
}
public CardRequestBuilder number(String number) {
this.number = number;
return this;
}
public CardRequestBuilder scheme(String scheme) {
this.scheme = scheme;
return this;
}
public CardRequestBuilder expiryMonth(int expiryMonth) {
this.expiryMonth = expiryMonth;
return this;
}
public CardRequestBuilder expiryYear(int expiryYear) {
this.expiryYear = expiryYear;
return this;
}
public CardRequestBuilder cardSecurityCode(String cardSecurityCode) {
this.cardSecurityCode = cardSecurityCode;
return this;
}
public CardRequestBuilder cardHolderBirthDay(Date cardHolderBirthDay) {
this.cardHolderBirthDay = cardHolderBirthDay;
return this;
}
public CardRequestBuilder paymentToken(String paymentToken) {
this.paymentToken = paymentToken;
return this;
}
public CardRequestBuilder proofOfIdType(String proofOfIdType) {
this.proofOfIdType = proofOfIdType;
return this;
}
public CardRequestBuilder proofOfIdNumber(String proofOfIdNumber) {
this.proofOfIdNumber = proofOfIdNumber;
return this;
}
public CardRequestBuilder walletPayload(String walletPayload) {
this.walletPayload = walletPayload;
return this;
}
public CardRequest build() {
CardRequest cardRequest = new CardRequest();
cardRequest.setNumber(number);
cardRequest.setScheme(scheme);
cardRequest.setExpiryMonth(expiryMonth);
cardRequest.setExpiryYear(expiryYear);
cardRequest.setCardSecurityCode(cardSecurityCode);
cardRequest.setCardHolderBirthDay(BuilderUtils.date2XMLGregorianCalendar(cardHolderBirthDay));
cardRequest.setPaymentToken(paymentToken);
cardRequest.setProofOfIdType(proofOfIdType);
cardRequest.setProofOfIdNumber(proofOfIdNumber);
cardRequest.setWalletPayload(walletPayload);
return cardRequest;
}
}