All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.killbill.billing.payment.dao.PaymentTransactionModelDao Maven / Gradle / Ivy
/*
* Copyright 2014 Groupon, Inc
*
* Groupon licenses this file to you 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 org.killbill.billing.payment.dao;
import java.math.BigDecimal;
import java.util.UUID;
import javax.annotation.Nullable;
import org.joda.time.DateTime;
import org.killbill.billing.catalog.api.Currency;
import org.killbill.billing.payment.api.PaymentTransaction;
import org.killbill.billing.payment.api.TransactionStatus;
import org.killbill.billing.payment.api.TransactionType;
import org.killbill.billing.util.dao.TableName;
import org.killbill.billing.util.entity.dao.EntityModelDao;
import org.killbill.billing.util.entity.dao.EntityModelDaoBase;
import com.google.common.base.Objects;
public class PaymentTransactionModelDao extends EntityModelDaoBase implements EntityModelDao {
private UUID attemptId;
private UUID paymentId;
private String transactionExternalKey;
private TransactionType transactionType;
private DateTime effectiveDate;
private TransactionStatus transactionStatus;
private BigDecimal amount;
private Currency currency;
private BigDecimal processedAmount;
private Currency processedCurrency;
private String gatewayErrorCode;
private String gatewayErrorMsg;
public PaymentTransactionModelDao() { /* For the DAO mapper */ }
public PaymentTransactionModelDao(final UUID id, @Nullable final UUID attemptId, @Nullable final String transactionExternalKey, @Nullable final DateTime createdDate, @Nullable final DateTime updatedDate,
final UUID paymentId, final TransactionType transactionType, final DateTime effectiveDate,
final TransactionStatus paymentStatus, final BigDecimal amount, final Currency currency, final String gatewayErrorCode, final String gatewayErrorMsg) {
super(id, createdDate, updatedDate);
this.attemptId = attemptId;
this.transactionExternalKey = Objects.firstNonNull(transactionExternalKey, id.toString());
this.paymentId = paymentId;
this.transactionType = transactionType;
this.effectiveDate = effectiveDate;
this.transactionStatus = paymentStatus;
this.amount = amount;
this.currency = currency;
this.processedAmount = null;
this.processedCurrency = null;
this.gatewayErrorCode = gatewayErrorCode;
this.gatewayErrorMsg = gatewayErrorMsg;
}
public PaymentTransactionModelDao(@Nullable final DateTime createdDate, @Nullable final DateTime updatedDate, @Nullable final UUID attemptId,
@Nullable final String transactionExternalKey, final UUID paymentId, final TransactionType transactionType, final DateTime effectiveDate,
final TransactionStatus paymentStatus, final BigDecimal amount, final Currency currency, final String gatewayErrorCode, final String gatewayErrorMsg) {
this(UUID.randomUUID(), attemptId, transactionExternalKey, createdDate, updatedDate, paymentId, transactionType, effectiveDate, paymentStatus, amount, currency, gatewayErrorCode, gatewayErrorMsg);
}
public UUID getPaymentId() {
return paymentId;
}
public UUID getAttemptId() {
return attemptId;
}
public void setAttemptId(final UUID attemptId) {
this.attemptId = attemptId;
}
public String getTransactionExternalKey() {
return transactionExternalKey;
}
public TransactionType getTransactionType() {
return transactionType;
}
public DateTime getEffectiveDate() {
return effectiveDate;
}
public TransactionStatus getTransactionStatus() {
return transactionStatus;
}
public BigDecimal getAmount() {
return amount;
}
public Currency getCurrency() {
return currency;
}
public BigDecimal getProcessedAmount() {
return processedAmount;
}
public Currency getProcessedCurrency() {
return processedCurrency;
}
public String getGatewayErrorCode() {
return gatewayErrorCode;
}
public String getGatewayErrorMsg() {
return gatewayErrorMsg;
}
public void setPaymentId(final UUID paymentId) {
this.paymentId = paymentId;
}
public void setTransactionExternalKey(final String transactionExternalKey) {
this.transactionExternalKey = transactionExternalKey;
}
public void setTransactionType(final TransactionType transactionType) {
this.transactionType = transactionType;
}
public void setEffectiveDate(final DateTime effectiveDate) {
this.effectiveDate = effectiveDate;
}
public void setTransactionStatus(final TransactionStatus transactionStatus) {
this.transactionStatus = transactionStatus;
}
public void setAmount(final BigDecimal amount) {
this.amount = amount;
}
public void setCurrency(final Currency currency) {
this.currency = currency;
}
public void setProcessedAmount(final BigDecimal processedAmount) {
this.processedAmount = processedAmount;
}
public void setProcessedCurrency(final Currency processedCurrency) {
this.processedCurrency = processedCurrency;
}
public void setGatewayErrorCode(final String gatewayErrorCode) {
this.gatewayErrorCode = gatewayErrorCode;
}
public void setGatewayErrorMsg(final String gatewayErrorMsg) {
this.gatewayErrorMsg = gatewayErrorMsg;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
final PaymentTransactionModelDao that = (PaymentTransactionModelDao) o;
if (amount != null ? amount.compareTo(that.amount) != 0 : that.amount != null) {
return false;
}
if (currency != that.currency) {
return false;
}
if (attemptId != null ? !attemptId.equals(that.attemptId) : that.attemptId != null) {
return false;
}
if (paymentId != null ? !paymentId.equals(that.paymentId) : that.paymentId != null) {
return false;
}
if (effectiveDate != null ? effectiveDate.compareTo(that.effectiveDate) != 0 : that.effectiveDate != null) {
return false;
}
if (transactionExternalKey != null ? !transactionExternalKey.equals(that.transactionExternalKey) : that.transactionExternalKey != null) {
return false;
}
if (gatewayErrorCode != null ? !gatewayErrorCode.equals(that.gatewayErrorCode) : that.gatewayErrorCode != null) {
return false;
}
if (gatewayErrorMsg != null ? !gatewayErrorMsg.equals(that.gatewayErrorMsg) : that.gatewayErrorMsg != null) {
return false;
}
if (transactionStatus != that.transactionStatus) {
return false;
}
if (processedAmount != null ? processedAmount.compareTo(that.processedAmount) != 0 : that.processedAmount != null) {
return false;
}
if (processedCurrency != that.processedCurrency) {
return false;
}
if (transactionType != that.transactionType) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = super.hashCode();
result = 31 * result + (paymentId != null ? paymentId.hashCode() : 0);
result = 31 * result + (attemptId != null ? attemptId.hashCode() : 0);
result = 31 * result + (transactionExternalKey != null ? transactionExternalKey.hashCode() : 0);
result = 31 * result + (transactionType != null ? transactionType.hashCode() : 0);
result = 31 * result + (effectiveDate != null ? effectiveDate.hashCode() : 0);
result = 31 * result + (transactionStatus != null ? transactionStatus.hashCode() : 0);
result = 31 * result + (amount != null ? amount.hashCode() : 0);
result = 31 * result + (currency != null ? currency.hashCode() : 0);
result = 31 * result + (processedAmount != null ? processedAmount.hashCode() : 0);
result = 31 * result + (processedCurrency != null ? processedCurrency.hashCode() : 0);
result = 31 * result + (gatewayErrorCode != null ? gatewayErrorCode.hashCode() : 0);
result = 31 * result + (gatewayErrorMsg != null ? gatewayErrorMsg.hashCode() : 0);
return result;
}
@Override
public TableName getTableName() {
return TableName.PAYMENT_TRANSACTIONS;
}
@Override
public TableName getHistoryTableName() {
return TableName.PAYMENT_TRANSACTION_HISTORY;
}
}