001/** 002 * Copyright 2005-2015 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.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/ecl2.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.rice.kim.impl.common.attribute; 017 018import javax.persistence.Column; 019import javax.persistence.Convert; 020import javax.persistence.Entity; 021import javax.persistence.GeneratedValue; 022import javax.persistence.Id; 023import javax.persistence.Table; 024 025import org.kuali.rice.kim.api.common.attribute.KimAttribute; 026import org.kuali.rice.kim.api.common.attribute.KimAttributeContract; 027import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 028import org.kuali.rice.krad.data.jpa.converters.BooleanYNConverter; 029import org.kuali.rice.krad.data.jpa.PortableSequenceGenerator; 030 031@Entity 032@Table(name = "KRIM_ATTR_DEFN_T") 033public class KimAttributeBo extends PersistableBusinessObjectBase implements KimAttributeContract { 034 035 private static final long serialVersionUID = 1L; 036 037 @PortableSequenceGenerator(name = "KRIM_ATTR_DEFN_ID_S") 038 @GeneratedValue(generator = "KRIM_ATTR_DEFN_ID_S") 039 @Id 040 @Column(name = "KIM_ATTR_DEFN_ID") 041 private String id; 042 043 @Column(name = "CMPNT_NM") 044 private String componentName; 045 046 @Column(name = "NM") 047 private String attributeName; 048 049 @Column(name = "NMSPC_CD") 050 private String namespaceCode; 051 052 @Column(name = "LBL") 053 private String attributeLabel; 054 055 @Column(name = "ACTV_IND") 056 @Convert(converter = BooleanYNConverter.class) 057 private boolean active; 058 059 public static KimAttribute to(KimAttributeBo bo) { 060 if (bo == null) { 061 return null; 062 } 063 return KimAttribute.Builder.create(bo).build(); 064 } 065 066 public static KimAttributeBo from(KimAttribute im) { 067 if (im == null) { 068 return null; 069 } 070 KimAttributeBo bo = new KimAttributeBo(); 071 bo.setId(im.getId()); 072 bo.setComponentName(im.getComponentName()); 073 bo.setAttributeName(im.getAttributeName()); 074 bo.setNamespaceCode(im.getNamespaceCode()); 075 bo.setAttributeLabel(im.getAttributeLabel()); 076 bo.setActive(im.isActive()); 077 bo.setVersionNumber(im.getVersionNumber()); 078 bo.setObjectId(im.getObjectId()); 079 return bo; 080 } 081 082 @Override 083 public String getId() { 084 return id; 085 } 086 087 public void setId(String id) { 088 this.id = id; 089 } 090 091 @Override 092 public String getComponentName() { 093 return componentName; 094 } 095 096 public void setComponentName(String componentName) { 097 this.componentName = componentName; 098 } 099 100 @Override 101 public String getAttributeName() { 102 return attributeName; 103 } 104 105 public void setAttributeName(String attributeName) { 106 this.attributeName = attributeName; 107 } 108 109 @Override 110 public String getNamespaceCode() { 111 return namespaceCode; 112 } 113 114 public void setNamespaceCode(String namespaceCode) { 115 this.namespaceCode = namespaceCode; 116 } 117 118 @Override 119 public String getAttributeLabel() { 120 return attributeLabel; 121 } 122 123 public void setAttributeLabel(String attributeLabel) { 124 this.attributeLabel = attributeLabel; 125 } 126 127 public boolean getActive() { 128 return active; 129 } 130 131 @Override 132 public boolean isActive() { 133 return active; 134 } 135 136 public void setActive(boolean active) { 137 this.active = active; 138 } 139}