Coverage Report - org.kuali.rice.kim.bo.reference.impl.EmailTypeImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
EmailTypeImpl
0%
0/13
N/A
1
 
 1  
 /*
 2  
  * Copyright 2007-2008 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 org.kuali.rice.kim.bo.reference.impl;
 17  
 
 18  
 import javax.persistence.AttributeOverride;
 19  
 import javax.persistence.AttributeOverrides;
 20  
 import javax.persistence.Column;
 21  
 import javax.persistence.Entity;
 22  
 import javax.persistence.Table;
 23  
 
 24  
 import org.kuali.rice.kim.bo.reference.EmailType;
 25  
 import org.kuali.rice.kim.bo.reference.dto.EmailTypeInfo;
 26  
 
 27  
 /**
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  */
 30  
 @Entity
 31  
 @Table(name="KRIM_EMAIL_TYP_T")
 32  
 @AttributeOverrides({
 33  
         @AttributeOverride(name="code",column=@Column(name="EMAIL_TYP_CD")),
 34  
         @AttributeOverride(name="name",column=@Column(name="NM"))
 35  
 })
 36  0
 public class EmailTypeImpl extends KimCodeBase implements EmailType {
 37  
 
 38  
         private static final long serialVersionUID = 1L;
 39  
 
 40  
         /**
 41  
          * @see org.kuali.rice.kim.bo.reference.EmailType#getEmailTypeCode()
 42  
          */
 43  
         public String getEmailTypeCode() {
 44  0
                 return getCode();
 45  
         }
 46  
 
 47  
         /**
 48  
          * @see org.kuali.rice.kim.bo.reference.EmailType#getEmailTypeName()
 49  
          */
 50  
         public String getEmailTypeName() {
 51  0
                 return getName();
 52  
         }
 53  
 
 54  
         /**
 55  
          * @see org.kuali.rice.kim.bo.reference.EmailType#setEmailTypeCode(java.lang.String)
 56  
          */
 57  
         public void setEmailTypeCode(String emailTypeCode) {
 58  0
                 setCode(emailTypeCode);
 59  0
         }
 60  
 
 61  
         /**
 62  
          * @see org.kuali.rice.kim.bo.reference.EmailType#setEmailTypeName(java.lang.String)
 63  
          */
 64  
         public void setEmailTypeName(String emailTypeName) {
 65  0
                 setName(emailTypeName);
 66  0
         }
 67  
         
 68  
         public EmailTypeInfo toInfo() {
 69  0
                 EmailTypeInfo info = new EmailTypeInfo();
 70  0
                 info.setCode(code);
 71  0
                 info.setName(name);
 72  0
                 info.setDisplaySortCode(displaySortCode);
 73  0
                 info.setActive(active);
 74  0
                 return info;
 75  
         }
 76  
 
 77  
 }