Coverage Report - org.kuali.rice.core.jpa.metadata.ObjectDescriptor
 
Classes in this File Line Coverage Branch Coverage Complexity
ObjectDescriptor
0%
0/55
0%
0/6
1.158
 
 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.core.jpa.metadata;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import javax.persistence.CascadeType;
 22  
 import javax.persistence.FetchType;
 23  
 
 24  
 /**
 25  
  * Base class for the "one" side of a relationship.
 26  
  * 
 27  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 28  
  */
 29  0
 public class ObjectDescriptor implements java.io.Serializable {
 30  
 
 31  
         private static final long serialVersionUID = -6414242817173646832L;
 32  
         
 33  
         protected String attributeName;
 34  
         protected Class targetEntity;
 35  0
         protected CascadeType [] cascade = new CascadeType[0];
 36  0
         protected FetchType fetch = FetchType.EAGER;
 37  0
         protected boolean optional = true;
 38  0
         protected List<JoinColumnDescriptor> joinColumnDescriptors = new ArrayList<JoinColumnDescriptor>();
 39  0
         protected List<String> fkFields = new ArrayList<String>();
 40  
         protected boolean insertable;
 41  
         protected boolean updateable;
 42  
         
 43  
         public boolean isInsertable() {
 44  0
                 return this.insertable;
 45  
         }
 46  
 
 47  
         public void setInsertable(boolean insertable) {
 48  0
                 this.insertable = insertable;
 49  0
         }
 50  
 
 51  
         public boolean isUpdateable() {
 52  0
                 return this.updateable;
 53  
         }
 54  
 
 55  
         public void setUpdateable(boolean updateable) {
 56  0
                 this.updateable = updateable;
 57  0
         }
 58  
 
 59  
         public Class getTargetEntity() {
 60  0
                 return this.targetEntity;
 61  
         }
 62  
         
 63  
         public void setTargetEntity(Class targetEntity) {
 64  0
                 this.targetEntity = targetEntity;
 65  0
         }
 66  
         
 67  
         public CascadeType[] getCascade() {
 68  0
                 return this.cascade;
 69  
         }
 70  
         
 71  
         public void setCascade(CascadeType[] cascade) {
 72  0
                 this.cascade = cascade;
 73  0
         }
 74  
         
 75  
         public FetchType getFetch() {
 76  0
                 return this.fetch;
 77  
         }
 78  
         
 79  
         public void setFetch(FetchType fetch) {
 80  0
                 this.fetch = fetch;
 81  0
         }
 82  
         
 83  
         public boolean isOptional() {
 84  0
                 return this.optional;
 85  
         }
 86  
         
 87  
         public void setOptional(boolean optional) {
 88  0
                 this.optional = optional;
 89  0
         }
 90  
         
 91  
         public String getAttributeName() {
 92  0
                 return this.attributeName;
 93  
         }
 94  
 
 95  
         public void setAttributeName(String attributeName) {
 96  0
                 this.attributeName = attributeName;
 97  0
         }
 98  
         
 99  
         public void addJoinColumnDescriptor(JoinColumnDescriptor joinColumnDescriptor) {
 100  0
                 joinColumnDescriptors.add(joinColumnDescriptor);
 101  0
         }
 102  
 
 103  
         public void addFkField(String fk) {
 104  0
                 fkFields.add(fk);
 105  0
         }
 106  
 
 107  
         public List<JoinColumnDescriptor> getJoinColumnDescriptors() {
 108  0
                 return joinColumnDescriptors;
 109  
         }
 110  
         
 111  
         public List<String> getForeignKeyFields() {
 112  0
                 return fkFields;
 113  
         }
 114  
         
 115  
         public String toString() {
 116  0
                 StringBuffer sb = new StringBuffer();
 117  0
                 sb.append("ObjectDescriptor = [ ");
 118  0
                 sb.append("targetEntity:").append(targetEntity.getName()).append(", ");
 119  0
                 sb.append("cascade = { ");
 120  0
                 for (CascadeType ct : cascade) {
 121  0
                         sb.append(ct).append(" ");
 122  
                 }
 123  0
                 sb.append("}, ");
 124  0
                 sb.append("fetch:").append(fetch).append(", ");
 125  0
                 sb.append("optional:").append(optional);
 126  0
                 if (!joinColumnDescriptors.isEmpty()) {
 127  0
                         sb.append(", join columns = { ");
 128  0
                         for (JoinColumnDescriptor joinColumnDescriptor : joinColumnDescriptors) {                                
 129  0
                                 sb.append(" jc = { ");
 130  0
                                 sb.append("name:").append(joinColumnDescriptor.getName()).append(", ");
 131  0
                                 sb.append("insertable:").append(joinColumnDescriptor.isInsertable()).append(", ");
 132  0
                                 sb.append("nullable:").append(joinColumnDescriptor.isNullable()).append(", ");
 133  0
                                 sb.append("unique:").append(joinColumnDescriptor.isUnique()).append(", ");
 134  0
                                 sb.append("updateable:").append(joinColumnDescriptor.isUpdateable());
 135  0
                                 sb.append(" }");
 136  
                         }
 137  0
                         sb.append(" } ");
 138  
                 }
 139  0
                 sb.append(" ]");
 140  0
                 return sb.toString();
 141  
         }
 142  
         
 143  
 }