|  1 |     | 
   package org.kuali.student.r2.core.classI.atp.model;  | 
  |  2 |     | 
     | 
  |  3 |     | 
   import javax.persistence.Entity;  | 
  |  4 |     | 
   import javax.persistence.Table;  | 
  |  5 |     | 
     | 
  |  6 |     | 
   import org.kuali.student.r2.common.entity.BaseAttributeEntity;  | 
  |  7 |     | 
   import org.kuali.student.r2.common.infc.Attribute;  | 
  |  8 |     | 
     | 
  |  9 |     | 
   @Entity  | 
  |  10 |     | 
   @Table(name = "KSEN_ATPATP_RELTN_ATTR")  | 
  |  11 |     | 
   public class AtpAtpRelationAttributeEntity extends BaseAttributeEntity{ | 
  |  12 |    0 |        public AtpAtpRelationAttributeEntity(){} | 
  |  13 |     | 
         | 
  |  14 |     | 
       public AtpAtpRelationAttributeEntity(Attribute att) { | 
  |  15 |    0 |            super(att);  | 
  |  16 |    0 |        }  | 
  |  17 |     | 
         | 
  |  18 |     | 
       public AtpAtpRelationAttributeEntity(String key, String value) { | 
  |  19 |    0 |            super(key, value);  | 
  |  20 |    0 |        }  | 
  |  21 |     | 
   }  |