Coverage Report - edu.sampleu.bookstore.bo.BSAddressType
 
Classes in this File Line Coverage Branch Coverage Complexity
BSAddressType
0%
0/11
N/A
1
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package edu.sampleu.bookstore.bo;
 17  
 
 18  
 import org.kuali.rice.core.api.mo.common.active.MutableInactivatable;
 19  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
 20  
 
 21  
 /**
 22  
  * AddressType Business Object class file relative to AddressType maintenance object.
 23  
  */
 24  
 
 25  0
 public class BSAddressType extends PersistableBusinessObjectBase implements MutableInactivatable {
 26  
         
 27  
         private String type;
 28  
         private String description;
 29  0
         private boolean active = true;
 30  
         /**
 31  
          * 
 32  
          */
 33  
         private static final long serialVersionUID = 2789636716684794794L;
 34  
         
 35  
         
 36  
         public String getType() {
 37  0
                 return type;
 38  
         }
 39  
 
 40  
         public void setType(String type) {
 41  0
                 this.type = type;
 42  0
         }
 43  
 
 44  
         public String getDescription() {
 45  0
                 return description;
 46  
         }
 47  
 
 48  
         public void setDescription(String description) {
 49  0
                 this.description = description;
 50  0
         }
 51  
 
 52  
         public boolean isActive() {
 53  0
                 return active;
 54  
         }
 55  
 
 56  
         public void setActive(boolean active) {
 57  0
                 this.active = active;
 58  0
         }
 59  
  
 60  
 
 61  
 }