DefaultCaseChange.java
Home
/
catalog /
src /
main /
java /
org /
killbill /
billing /
catalog /
rules /
DefaultCaseChange.java
/*
* Copyright 2010-2013 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 org.killbill.billing.catalog.rules;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlIDREF;
import org.killbill.billing.catalog.DefaultPriceList;
import org.killbill.billing.catalog.DefaultProduct;
import org.killbill.billing.catalog.StandaloneCatalog;
import org.killbill.billing.catalog.api.BillingPeriod;
import org.killbill.billing.catalog.api.CatalogApiException;
import org.killbill.billing.catalog.api.PhaseType;
import org.killbill.billing.catalog.api.PlanPhaseSpecifier;
import org.killbill.billing.catalog.api.PlanSpecifier;
import org.killbill.billing.catalog.api.PriceList;
import org.killbill.billing.catalog.api.Product;
import org.killbill.billing.catalog.api.ProductCategory;
import org.killbill.billing.catalog.api.StaticCatalog;
import org.killbill.billing.catalog.api.rules.CaseChange;
import org.killbill.xmlloader.ValidatingConfig;
import org.killbill.xmlloader.ValidationErrors;
@XmlAccessorType(XmlAccessType.NONE)
public abstract class DefaultCaseChange<T> extends ValidatingConfig<StandaloneCatalog> implements CaseChange {
@XmlElement(required = false)
protected PhaseType phaseType;
@XmlElement(required = false)
@XmlIDREF
private DefaultProduct fromProduct;
@XmlElement(required = false)
private ProductCategory fromProductCategory;
@XmlElement(required = false)
private BillingPeriod fromBillingPeriod;
@XmlElement(required = false)
@XmlIDREF
private DefaultPriceList fromPriceList;
@XmlElement(required = false)
@XmlIDREF
private DefaultProduct toProduct;
@XmlElement(required = false)
private ProductCategory toProductCategory;
@XmlElement(required = false)
private BillingPeriod toBillingPeriod;
@XmlElement(required = false)
@XmlIDREF
private DefaultPriceList toPriceList;
protected abstract T getResult();
public T getResult(final PlanPhaseSpecifier from,
final PlanSpecifier to, final StaticCatalog catalog) throws CatalogApiException {
if (
(phaseType == null || from.getPhaseType() == phaseType) &&
(fromProduct == null || fromProduct.equals(catalog.findCurrentProduct(from.getProductName()))) &&
(fromProductCategory == null || fromProductCategory.equals(from.getProductCategory())) &&
(fromBillingPeriod == null || fromBillingPeriod.equals(from.getBillingPeriod())) &&
(toProduct == null || toProduct.equals(catalog.findCurrentProduct(to.getProductName()))) &&
(toProductCategory == null || toProductCategory.equals(to.getProductCategory())) &&
(toBillingPeriod == null || toBillingPeriod.equals(to.getBillingPeriod())) &&
(fromPriceList == null || fromPriceList.equals(catalog.findCurrentPricelist(from.getPriceListName()))) &&
(toPriceList == null || toPriceList.equals(catalog.findCurrentPricelist(to.getPriceListName())))
) {
return getResult();
}
return null;
}
public static <K> K getResult(final DefaultCaseChange<K>[] cases, final PlanPhaseSpecifier from,
final PlanSpecifier to, final StaticCatalog catalog) throws CatalogApiException {
if (cases != null) {
for (final DefaultCaseChange<K> cc : cases) {
final K result = cc.getResult(from, to, catalog);
if (result != null) {
return result;
}
}
}
return null;
}
@Override
public ValidationErrors validate(final StandaloneCatalog catalog, final ValidationErrors errors) {
return errors;
}
public DefaultCaseChange<T> setPhaseType(final PhaseType phaseType) {
this.phaseType = phaseType;
return this;
}
public DefaultCaseChange<T> setFromProduct(final DefaultProduct fromProduct) {
this.fromProduct = fromProduct;
return this;
}
public DefaultCaseChange<T> setFromProductCategory(final ProductCategory fromProductCategory) {
this.fromProductCategory = fromProductCategory;
return this;
}
public DefaultCaseChange<T> setFromBillingPeriod(final BillingPeriod fromBillingPeriod) {
this.fromBillingPeriod = fromBillingPeriod;
return this;
}
public DefaultCaseChange<T> setFromPriceList(final DefaultPriceList fromPriceList) {
this.fromPriceList = fromPriceList;
return this;
}
public DefaultCaseChange<T> setToProduct(final DefaultProduct toProduct) {
this.toProduct = toProduct;
return this;
}
public DefaultCaseChange<T> setToProductCategory(final ProductCategory toProductCategory) {
this.toProductCategory = toProductCategory;
return this;
}
public DefaultCaseChange<T> setToBillingPeriod(final BillingPeriod toBillingPeriod) {
this.toBillingPeriod = toBillingPeriod;
return this;
}
public DefaultCaseChange<T> setToPriceList(final DefaultPriceList toPriceList) {
this.toPriceList = toPriceList;
return this;
}
@Override
public boolean equals(final Object o) {
if (this == o) {
return true;
}
if (!(o instanceof DefaultCaseChange)) {
return false;
}
final DefaultCaseChange that = (DefaultCaseChange) o;
if (fromBillingPeriod != that.fromBillingPeriod) {
return false;
}
if (fromPriceList != null ? !fromPriceList.equals(that.fromPriceList) : that.fromPriceList != null) {
return false;
}
if (fromProduct != null ? !fromProduct.equals(that.fromProduct) : that.fromProduct != null) {
return false;
}
if (fromProductCategory != that.fromProductCategory) {
return false;
}
if (phaseType != that.phaseType) {
return false;
}
if (toBillingPeriod != that.toBillingPeriod) {
return false;
}
if (toPriceList != null ? !toPriceList.equals(that.toPriceList) : that.toPriceList != null) {
return false;
}
if (toProduct != null ? !toProduct.equals(that.toProduct) : that.toProduct != null) {
return false;
}
if (toProductCategory != that.toProductCategory) {
return false;
}
return true;
}
@Override
public int hashCode() {
int result = phaseType != null ? phaseType.hashCode() : 0;
result = 31 * result + (fromProduct != null ? fromProduct.hashCode() : 0);
result = 31 * result + (fromProductCategory != null ? fromProductCategory.hashCode() : 0);
result = 31 * result + (fromBillingPeriod != null ? fromBillingPeriod.hashCode() : 0);
result = 31 * result + (fromPriceList != null ? fromPriceList.hashCode() : 0);
result = 31 * result + (toProduct != null ? toProduct.hashCode() : 0);
result = 31 * result + (toProductCategory != null ? toProductCategory.hashCode() : 0);
result = 31 * result + (toBillingPeriod != null ? toBillingPeriod.hashCode() : 0);
result = 31 * result + (toPriceList != null ? toPriceList.hashCode() : 0);
return result;
}
@Override
public PhaseType getPhaseType() {
return phaseType;
}
@Override
public Product getFromProduct() {
return fromProduct;
}
@Override
public ProductCategory getFromProductCategory() {
return fromProductCategory;
}
@Override
public BillingPeriod getFromBillingPeriod() {
return fromBillingPeriod;
}
@Override
public PriceList getFromPriceList() {
return fromPriceList;
}
@Override
public Product getToProduct() {
return toProduct;
}
@Override
public ProductCategory getToProductCategory() {
return toProductCategory;
}
@Override
public BillingPeriod getToBillingPeriod() {
return toBillingPeriod;
}
@Override
public PriceList getToPriceList() {
return toPriceList;
}
}