BillingStateBundle.java

69 lines | 2.248 kB Blame History Raw Download
/*
 * 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.overdue.config.api;

import java.math.BigDecimal;
import java.util.UUID;

import org.joda.time.DateTime;

import com.ning.billing.catalog.api.BillingPeriod;
import com.ning.billing.catalog.api.PhaseType;
import com.ning.billing.catalog.api.PriceList;
import com.ning.billing.catalog.api.Product;
import com.ning.billing.entitlement.api.user.SubscriptionBundle;
import com.ning.billing.util.tag.Tag;

public class BillingStateBundle extends BillingState<SubscriptionBundle> {
    private final Product basePlanProduct;
    private final BillingPeriod basePlanBillingPeriod;
    private final PriceList basePlanPriceList;
    private final PhaseType basePlanPhaseType;
    
	public BillingStateBundle(UUID id, int numberOfUnpaidInvoices, BigDecimal unpaidInvoiceBalance,
			DateTime dateOfEarliestUnpaidInvoice,
			PaymentResponse responseForLastFailedPayment,
			Tag[] tags, 
			Product basePlanProduct,
			BillingPeriod basePlanBillingPeriod, 
			PriceList basePlanPriceList, PhaseType basePlanPhaseType) {
		super(id, numberOfUnpaidInvoices, unpaidInvoiceBalance, 
				dateOfEarliestUnpaidInvoice, responseForLastFailedPayment, tags);
		
		this.basePlanProduct = basePlanProduct;
		this.basePlanBillingPeriod = basePlanBillingPeriod;
		this.basePlanPriceList = basePlanPriceList;
		this.basePlanPhaseType = basePlanPhaseType;
	}
	
	public Product getBasePlanProduct() {
		return basePlanProduct;
	}
	
	public BillingPeriod getBasePlanBillingPeriod() {
		return basePlanBillingPeriod;
	}
	
	public PriceList getBasePlanPriceList() {
		return basePlanPriceList;
	}

    public PhaseType getBasePlanPhaseType() {
        return basePlanPhaseType;
    }
}