/*
* Copyright 2016 The Billing Project, LLC
*
* The Billing Project 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.api;
import java.math.BigDecimal;
import java.util.UUID;
import org.joda.time.DateTime;
import org.killbill.billing.catalog.api.Currency;
import org.killbill.billing.entity.EntityBase;
public class DefaultPaymentAttempt extends EntityBase implements PaymentAttempt {
private final UUID paymentId;
private final TransactionType transactionType;
private final DateTime effectiveDate;
private final TransactionStatus status;
private final BigDecimal amount;
private final Currency currency;
public DefaultPaymentAttempt(final UUID id, final UUID paymentId,
final TransactionType transactionType, final DateTime effectiveDate,
final TransactionStatus status, final BigDecimal amount, final Currency currency) {
super(id);
this.paymentId = paymentId;
this.transactionType = transactionType;
this.effectiveDate = effectiveDate;
this.status = status;
this.amount = amount;
this.currency = currency;
}
@Override
public UUID getPaymentId() {
return paymentId;
}
@Override
public TransactionType getTransactionType() {
return transactionType;
}
@Override
public DateTime getEffectiveDate() {
return effectiveDate;
}
@Override
public BigDecimal getAmount() {
return amount;
}
@Override
public Currency getCurrency() {
return currency;
}
@Override
public TransactionStatus getTransactionStatus() {
return status;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("DefaultPaymentTransaction{");
sb.append("paymentId=").append(paymentId);
sb.append(", transactionType=").append(transactionType);
sb.append(", effectiveDate=").append(effectiveDate);
sb.append(", status=").append(status);
sb.append(", amount=").append(amount);
sb.append(", currency=").append(currency);
sb.append('}');
return sb.toString();
}
@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 DefaultPaymentAttempt that = (DefaultPaymentAttempt) o;
if (amount != null ? amount.compareTo(that.amount) != 0 : that.amount != null) {
return false;
}
if (currency != that.currency) {
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 (status != that.status) {
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 + (transactionType != null ? transactionType.hashCode() : 0);
result = 31 * result + (effectiveDate != null ? effectiveDate.hashCode() : 0);
result = 31 * result + (status != null ? status.hashCode() : 0);
result = 31 * result + (amount != null ? amount.hashCode() : 0);
result = 31 * result + (currency != null ? currency.hashCode() : 0);
return result;
}
}