/* * The Kuali Financial System, a comprehensive financial management system for higher education. * * Copyright 2005-2014 The Kuali Foundation * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.kuali.kfs.module.purap.businessobject; import org.kuali.kfs.vnd.businessobject.CampusParameter; import org.kuali.rice.core.api.mo.common.active.MutableInactivatable; import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; /** * Billing Address Business Object. */ public class BillingAddress extends PersistableBusinessObjectBase implements MutableInactivatable{ protected String billingCampusCode; protected String billingName; protected String billingLine1Address; protected String billingLine2Address; protected String billingCityName; protected String billingStateCode; protected String billingPostalCode; protected String billingCountryCode; protected String billingPhoneNumber; protected String billingEmailAddress; protected boolean active; protected CampusParameter billingCampus; /** * Default constructor. */ public BillingAddress() { } public String getBillingCampusCode() { return billingCampusCode; } public void setBillingCampusCode(String billingCampusCode) { this.billingCampusCode = billingCampusCode; } public String getBillingName() { return billingName; } public void setBillingName(String billingName) { this.billingName = billingName; } public String getBillingLine1Address() { return billingLine1Address; } public void setBillingLine1Address(String billingLine1Address) { this.billingLine1Address = billingLine1Address; } public String getBillingLine2Address() { return billingLine2Address; } public void setBillingLine2Address(String billingLine2Address) { this.billingLine2Address = billingLine2Address; } public String getBillingCityName() { return billingCityName; } public void setBillingCityName(String billingCityName) { this.billingCityName = billingCityName; } public String getBillingStateCode() { return billingStateCode; } public void setBillingStateCode(String billingStateCode) { this.billingStateCode = billingStateCode; } public String getBillingPostalCode() { return billingPostalCode; } public void setBillingPostalCode(String billingPostalCode) { this.billingPostalCode = billingPostalCode; } public String getBillingCountryCode() { return billingCountryCode; } public void setBillingCountryCode(String billingCountryCode) { this.billingCountryCode = billingCountryCode; } public String getBillingPhoneNumber() { return billingPhoneNumber; } public void setBillingPhoneNumber(String billingPhoneNumber) { this.billingPhoneNumber = billingPhoneNumber; } public String getBillingEmailAddress() { return billingEmailAddress; } public void setBillingEmailAddress(String billingEmailAddress) { this.billingEmailAddress = billingEmailAddress; } public CampusParameter getBillingCampus() { return billingCampus; } /** * @deprecated */ public void setBillingCampus(CampusParameter billingCampus) { this.billingCampus = billingCampus; } @Override public boolean isActive() { return active; } @Override public void setActive(boolean active) { this.active = active; } }