/*
* Copyright 2010-2011 Ning, Inc.
*
* Ning 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 com.ning.billing.payment.plugin.api;
import com.google.common.base.Objects;
public class PaymentProviderAccount {
private final String id;
private final String accountKey;
private final String accountName;
private final String phoneNumber;
private final String defaultPaymentMethodId;
public PaymentProviderAccount(final String id,
final String accountKey,
final String accountName,
final String phoneNumber,
final String defaultPaymentMethodId) {
this.id = id;
this.accountKey = accountKey;
this.accountName = accountName;
this.phoneNumber = phoneNumber;
this.defaultPaymentMethodId = defaultPaymentMethodId;
}
public String getId() {
return id;
}
public String getAccountKey() {
return accountKey;
}
public String getAccountName() {
return accountName;
}
public String getPhoneNumber() {
return phoneNumber;
}
public String getDefaultPaymentMethodId() {
return defaultPaymentMethodId;
}
public static class Builder {
private String id;
private String accountKey;
private String accountName;
private String phoneNumber;
private String defaultPaymentMethodId;
public Builder copyFrom(final PaymentProviderAccount src) {
this.id = src.getId();
this.accountKey = src.getAccountKey();
this.accountName = src.getAccountName();
this.phoneNumber = src.getPhoneNumber();
this.defaultPaymentMethodId = src.getDefaultPaymentMethodId();
return this;
}
public Builder setId(final String id) {
this.id = id;
return this;
}
public Builder setAccountKey(final String accountKey) {
this.accountKey = accountKey;
return this;
}
public Builder setAccountName(final String accountName) {
this.accountName = accountName;
return this;
}
public Builder setPhoneNumber(final String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public Builder setDefaultPaymentMethod(final String defaultPaymentMethod) {
this.defaultPaymentMethodId = defaultPaymentMethod;
return this;
}
public PaymentProviderAccount build() {
return new PaymentProviderAccount(id, accountKey, accountName, phoneNumber, defaultPaymentMethodId);
}
}
@Override
public int hashCode() {
return Objects.hashCode(id,
accountKey,
accountName,
phoneNumber,
defaultPaymentMethodId);
}
@Override
public boolean equals(final Object obj) {
if (getClass() == obj.getClass()) {
final PaymentProviderAccount other = (PaymentProviderAccount) obj;
if (obj == other) {
return true;
} else {
return Objects.equal(id, other.id) &&
Objects.equal(accountKey, other.accountKey) &&
Objects.equal(accountName, other.accountName) &&
Objects.equal(phoneNumber, other.phoneNumber) &&
Objects.equal(defaultPaymentMethodId, other.defaultPaymentMethodId);
}
}
return false;
}
@Override
public String toString() {
return "PaymentProviderAccount [id=" + id + ", accountKey=" + accountKey + ", accountName=" + accountName + ", phoneNumber=" + phoneNumber + ", defaultPaymentMethodId=" + defaultPaymentMethodId + "]";
}
}