001/* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 1.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl1.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.module.purap.businessobject; 017 018import org.kuali.rice.core.api.mo.common.active.MutableInactivatable; 019import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 020 021import java.math.BigDecimal; 022 023public class OrderItemStatus extends PersistableBusinessObjectBase implements MutableInactivatable { 024 025 private BigDecimal orderItemStatusId; 026 private String orderItemStatus; 027 private boolean active; 028 private String description; 029 030 @Override 031 public boolean isActive() { 032 return active; 033 } 034 035 @Override 036 public void setActive(boolean active) { 037 this.active = active; 038 } 039 040 041 public String getOrderItemStatus() { 042 return orderItemStatus; 043 } 044 045 046 public void setOrderItemStatus(String orderItemStatus) { 047 this.orderItemStatus = orderItemStatus; 048 } 049 050 051 public BigDecimal getOrderItemStatusId() { 052 return orderItemStatusId; 053 } 054 055 056 public void setOrderItemStatusId(BigDecimal orderItemStatusId) { 057 this.orderItemStatusId = orderItemStatusId; 058 } 059 060 061 public String getDescription() { 062 return description; 063 } 064 065 066 public void setDescription(String description) { 067 this.description = description; 068 } 069 070 071}