org.killbill.billing.client.model.Subscription Maven / Gradle / Ivy
/*
* Copyright 2010-2014 Ning, Inc.
* Copyright 2015 Groupon, Inc
* Copyright 2015 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.client.model;
import java.util.List;
import java.util.UUID;
import javax.annotation.Nullable;
import org.joda.time.LocalDate;
import org.killbill.billing.catalog.api.BillingPeriod;
import org.killbill.billing.catalog.api.PhaseType;
import org.killbill.billing.catalog.api.ProductCategory;
import org.killbill.billing.entitlement.api.Entitlement.EntitlementSourceType;
import org.killbill.billing.entitlement.api.Entitlement.EntitlementState;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class Subscription extends KillBillObject {
private UUID accountId;
private UUID bundleId;
private UUID subscriptionId;
private String externalKey;
private LocalDate startDate;
private String productName;
private ProductCategory productCategory;
private BillingPeriod billingPeriod;
private PhaseType phaseType;
private String priceList;
private String planName;
private EntitlementState state;
private EntitlementSourceType sourceType;
private LocalDate cancelledDate;
private LocalDate chargedThroughDate;
private LocalDate billingStartDate;
private LocalDate billingEndDate;
private Integer billCycleDayLocal;
private List events;
private List priceOverrides;
public Subscription() { }
@JsonCreator
public Subscription(@JsonProperty("accountId") @Nullable final UUID accountId,
@JsonProperty("bundleId") @Nullable final UUID bundleId,
@JsonProperty("subscriptionId") @Nullable final UUID subscriptionId,
@JsonProperty("externalKey") @Nullable final String externalKey,
@JsonProperty("startDate") @Nullable final LocalDate startDate,
@JsonProperty("productName") @Nullable final String productName,
@JsonProperty("productCategory") @Nullable final ProductCategory productCategory,
@JsonProperty("billingPeriod") @Nullable final BillingPeriod billingPeriod,
@JsonProperty("phaseType") @Nullable final PhaseType phaseType,
@JsonProperty("priceList") @Nullable final String priceList,
@JsonProperty("planName") @Nullable final String planName,
@JsonProperty("state") @Nullable final EntitlementState state,
@JsonProperty("sourceType") @Nullable final EntitlementSourceType sourceType,
@JsonProperty("cancelledDate") @Nullable final LocalDate cancelledDate,
@JsonProperty("chargedThroughDate") @Nullable final LocalDate chargedThroughDate,
@JsonProperty("billingStartDate") @Nullable final LocalDate billingStartDate,
@JsonProperty("billingEndDate") @Nullable final LocalDate billingEndDate,
@JsonProperty("billCycleDayLocal") @Nullable final Integer billCycleDayLocal,
@JsonProperty("events") @Nullable final List events,
@JsonProperty("priceOverrides") @Nullable final List priceOverrides,
@JsonProperty("auditLogs") @Nullable final List auditLogs) {
super(auditLogs);
this.startDate = startDate;
this.productName = productName;
this.productCategory = productCategory;
this.billingPeriod = billingPeriod;
this.phaseType = phaseType;
this.priceList = priceList;
this.planName = planName;
this.state = state;
this.sourceType = sourceType;
this.cancelledDate = cancelledDate;
this.chargedThroughDate = chargedThroughDate;
this.billingStartDate = billingStartDate;
this.billingEndDate = billingEndDate;
this.billCycleDayLocal = billCycleDayLocal;
this.accountId = accountId;
this.bundleId = bundleId;
this.subscriptionId = subscriptionId;
this.externalKey = externalKey;
this.events = events;
this.priceOverrides = priceOverrides;
}
public UUID getAccountId() {
return accountId;
}
public void setAccountId(final UUID accountId) {
this.accountId = accountId;
}
public UUID getBundleId() {
return bundleId;
}
public void setBundleId(final UUID bundleId) {
this.bundleId = bundleId;
}
public UUID getSubscriptionId() {
return subscriptionId;
}
public void setSubscriptionId(final UUID subscriptionId) {
this.subscriptionId = subscriptionId;
}
public String getExternalKey() {
return externalKey;
}
public void setExternalKey(final String externalKey) {
this.externalKey = externalKey;
}
public LocalDate getStartDate() {
return startDate;
}
public void setStartDate(final LocalDate startDate) {
this.startDate = startDate;
}
public String getProductName() {
return productName;
}
public void setProductName(final String productName) {
this.productName = productName;
}
public ProductCategory getProductCategory() {
return productCategory;
}
public void setProductCategory(final ProductCategory productCategory) {
this.productCategory = productCategory;
}
public BillingPeriod getBillingPeriod() {
return billingPeriod;
}
public void setBillingPeriod(final BillingPeriod billingPeriod) {
this.billingPeriod = billingPeriod;
}
public PhaseType getPhaseType() {
return phaseType;
}
public void setPhaseType(final PhaseType phaseType) {
this.phaseType = phaseType;
}
public String getPriceList() {
return priceList;
}
public void setPriceList(final String priceList) {
this.priceList = priceList;
}
public String getPlanName() {
return planName;
}
public void setPlanName(final String planName) {
this.planName = planName;
}
public EntitlementState getState() {
return state;
}
public void setState(final EntitlementState state) {
this.state = state;
}
public EntitlementSourceType getSourceType() {
return sourceType;
}
public void setSourceType(final EntitlementSourceType sourceType) {
this.sourceType = sourceType;
}
public LocalDate getCancelledDate() {
return cancelledDate;
}
public void setCancelledDate(final LocalDate cancelledDate) {
this.cancelledDate = cancelledDate;
}
public LocalDate getChargedThroughDate() {
return chargedThroughDate;
}
public void setChargedThroughDate(final LocalDate chargedThroughDate) {
this.chargedThroughDate = chargedThroughDate;
}
public LocalDate getBillingStartDate() {
return billingStartDate;
}
public void setBillingStartDate(final LocalDate billingStartDate) {
this.billingStartDate = billingStartDate;
}
public LocalDate getBillingEndDate() {
return billingEndDate;
}
public void setBillingEndDate(final LocalDate billingEndDate) {
this.billingEndDate = billingEndDate;
}
public List getEvents() {
return events;
}
public void setEvents(final List events) {
this.events = events;
}
public List getPriceOverrides() {
return priceOverrides;
}
public void setPriceOverrides(final List priceOverrides) {
this.priceOverrides = priceOverrides;
}
public Integer getBillCycleDayLocal() {
return billCycleDayLocal;
}
public void setBillCycleDayLocal(final Integer billCycleDayLocal) {
this.billCycleDayLocal = billCycleDayLocal;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("Subscription{");
sb.append("accountId=").append(accountId);
sb.append(", bundleId=").append(bundleId);
sb.append(", subscriptionId=").append(subscriptionId);
sb.append(", externalKey='").append(externalKey).append('\'');
sb.append(", startDate=").append(startDate);
sb.append(", productName='").append(productName).append('\'');
sb.append(", productCategory=").append(productCategory);
sb.append(", billingPeriod=").append(billingPeriod);
sb.append(", phaseType=").append(phaseType);
sb.append(", priceList='").append(priceList).append('\'');
sb.append(", planName='").append(planName).append('\'');
sb.append(", state=").append(state);
sb.append(", sourceType=").append(sourceType);
sb.append(", cancelledDate=").append(cancelledDate);
sb.append(", chargedThroughDate=").append(chargedThroughDate);
sb.append(", billingStartDate=").append(billingStartDate);
sb.append(", billingEndDate=").append(billingEndDate);
sb.append(", billCycleDayLocal=").append(billCycleDayLocal);
sb.append(", events=").append(events);
sb.append(", priceOverrides=").append(priceOverrides);
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;
}
final Subscription that = (Subscription) o;
if (accountId != null ? !accountId.equals(that.accountId) : that.accountId != null) {
return false;
}
if (billingEndDate != null ? billingEndDate.compareTo(that.billingEndDate) != 0 : that.billingEndDate != null) {
return false;
}
if (billingPeriod != that.billingPeriod) {
return false;
}
if (billingStartDate != null ? billingStartDate.compareTo(that.billingStartDate) != 0 : that.billingStartDate != null) {
return false;
}
if (bundleId != null ? !bundleId.equals(that.bundleId) : that.bundleId != null) {
return false;
}
if (cancelledDate != null ? cancelledDate.compareTo(that.cancelledDate) != 0 : that.cancelledDate != null) {
return false;
}
if (chargedThroughDate != null ? chargedThroughDate.compareTo(that.chargedThroughDate) != 0 : that.chargedThroughDate != null) {
return false;
}
if (events != null ? !events.equals(that.events) : that.events != null) {
return false;
}
if (priceOverrides != null ? !priceOverrides.equals(that.priceOverrides) : that.priceOverrides != null) {
return false;
}
if (externalKey != null ? !externalKey.equals(that.externalKey) : that.externalKey != null) {
return false;
}
if (phaseType != that.phaseType) {
return false;
}
if (priceList != null ? !priceList.equals(that.priceList) : that.priceList != null) {
return false;
}
if (planName != null ? !planName.equals(that.planName) : that.planName != null) {
return false;
}
if (productCategory != that.productCategory) {
return false;
}
if (productName != null ? !productName.equals(that.productName) : that.productName != null) {
return false;
}
if (sourceType != that.sourceType) {
return false;
}
if (startDate != null ? startDate.compareTo(that.startDate) != 0 : that.startDate != null) {
return false;
}
if (state != that.state) {
return false;
}
if (subscriptionId != null ? !subscriptionId.equals(that.subscriptionId) : that.subscriptionId != null) {
return false;
}
if (billCycleDayLocal != null ? !billCycleDayLocal.equals(that.billCycleDayLocal) : that.billCycleDayLocal != null) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = accountId != null ? accountId.hashCode() : 0;
result = 31 * result + (bundleId != null ? bundleId.hashCode() : 0);
result = 31 * result + (subscriptionId != null ? subscriptionId.hashCode() : 0);
result = 31 * result + (externalKey != null ? externalKey.hashCode() : 0);
result = 31 * result + (startDate != null ? startDate.hashCode() : 0);
result = 31 * result + (productName != null ? productName.hashCode() : 0);
result = 31 * result + (productCategory != null ? productCategory.hashCode() : 0);
result = 31 * result + (billingPeriod != null ? billingPeriod.hashCode() : 0);
result = 31 * result + (phaseType != null ? phaseType.hashCode() : 0);
result = 31 * result + (priceList != null ? priceList.hashCode() : 0);
result = 31 * result + (planName != null ? planName.hashCode() : 0);
result = 31 * result + (state != null ? state.hashCode() : 0);
result = 31 * result + (sourceType != null ? sourceType.hashCode() : 0);
result = 31 * result + (cancelledDate != null ? cancelledDate.hashCode() : 0);
result = 31 * result + (chargedThroughDate != null ? chargedThroughDate.hashCode() : 0);
result = 31 * result + (billingStartDate != null ? billingStartDate.hashCode() : 0);
result = 31 * result + (billingEndDate != null ? billingEndDate.hashCode() : 0);
result = 31 * result + (billCycleDayLocal != null ? billCycleDayLocal.hashCode() : 0);
result = 31 * result + (events != null ? events.hashCode() : 0);
result = 31 * result + (priceOverrides != null ? priceOverrides.hashCode() : 0);
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy