Coverage Report - org.kuali.rice.core.jpa.metadata.JoinColumnDescriptor
 
Classes in this File Line Coverage Branch Coverage Complexity
JoinColumnDescriptor
0%
0/21
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.core.jpa.metadata;
 17  
 
 18  
 /**
 19  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 20  
  */
 21  0
 public class JoinColumnDescriptor implements java.io.Serializable {
 22  
 
 23  
         private static final long serialVersionUID = -9127161936848994757L;
 24  
 
 25  0
         private String name = "";
 26  0
         private boolean unique = false;
 27  0
         private boolean nullable = true;
 28  0
         private boolean insertable = true;
 29  0
         private boolean updateable = true;
 30  
         
 31  
         public String getName() {
 32  0
                 return this.name;
 33  
         }
 34  
 
 35  
         public void setName(String name) {
 36  0
                 this.name = name;
 37  0
         }
 38  
         
 39  
         public boolean isUnique() {
 40  0
                 return this.unique;
 41  
         }
 42  
         
 43  
         public void setUnique(boolean unique) {
 44  0
                 this.unique = unique;
 45  0
         }
 46  
         
 47  
         public boolean isNullable() {
 48  0
                 return this.nullable;
 49  
         }
 50  
         
 51  
         public void setNullable(boolean nullable) {
 52  0
                 this.nullable = nullable;
 53  0
         }
 54  
         
 55  
         public boolean isInsertable() {
 56  0
                 return this.insertable;
 57  
         }
 58  
         
 59  
         public void setInsertable(boolean insertable) {
 60  0
                 this.insertable = insertable;
 61  0
         }
 62  
         
 63  
         public boolean isUpdateable() {
 64  0
                 return this.updateable;
 65  
         }
 66  
         
 67  
         public void setUpdateable(boolean updateable) {
 68  0
                 this.updateable = updateable;
 69  0
         }
 70  
                 
 71  
 }