Coverage Report - edu.sampleu.financial.bo.VendorGenericAttributes
 
Classes in this File Line Coverage Branch Coverage Complexity
VendorGenericAttributes
0%
0/53
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 edu.sampleu.financial.bo;
 17  
 
 18  
 import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
 19  
 
 20  
 
 21  
 /**
 22  
  * Attribute Reference Dummy Business Object for Vendor attributes
 23  
  */
 24  
 public class VendorGenericAttributes extends PersistableBusinessObjectBase {
 25  
 
 26  
     private String line1Address;
 27  
     private String line2Address;
 28  
     private String cityName;
 29  
     private String zipCode;
 30  
     private String stateCode;
 31  
     private String countryCode;
 32  
     private String internationalProvinceName;
 33  
     private String attentionName;
 34  
     private String campusCode;
 35  
     private String yesNoWithBlankIndicator;
 36  
     private String yesNoWithoutBlankIndicator;
 37  
     private boolean hiddenIndicator;
 38  
     private String phoneNumberNoValidation;
 39  
     private String phoneNumberWithValidation;
 40  
     private String genericUrlAddress;
 41  
     private String vendorHeaderGeneratedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail"
 42  
     // sourceAttributeName="vendorNumber"/>
 43  
     private String vendorDetailAssignedIdentifier; // " sourceClassName="org.kuali.kfs.vnd.businessobject.VendorDetail"
 44  
     // sourceAttributeName="vendorNumber"/>
 45  
 
 46  
     /**
 47  
      * Constructs a VendorAttributeReferenceDummy.
 48  
      */
 49  
     public VendorGenericAttributes() {
 50  0
         super();
 51  0
     }
 52  
 
 53  
     /*
 54  
      * WORKFLOW LABEL ATTRIBUTES BEGIN HERE
 55  
      */
 56  
 
 57  
     public String getVendorDetailAssignedIdentifier() {
 58  
 
 59  0
         return vendorDetailAssignedIdentifier;
 60  
     }
 61  
 
 62  
     public void setVendorDetailAssignedIdentifier(String vendorDetailAssignedIdentifier) {
 63  0
         this.vendorDetailAssignedIdentifier = vendorDetailAssignedIdentifier;
 64  0
     }
 65  
 
 66  
     public String getVendorHeaderGeneratedIdentifier() {
 67  
 
 68  0
         return vendorHeaderGeneratedIdentifier;
 69  
     }
 70  
 
 71  
     public void setVendorHeaderGeneratedIdentifier(String vendorHeaderGeneratedIdentifier) {
 72  0
         this.vendorHeaderGeneratedIdentifier = vendorHeaderGeneratedIdentifier;
 73  0
     }
 74  
 
 75  
     /*
 76  
      * WORKFLOW LABEL ATTRIBUTES END HERE
 77  
      */
 78  
 
 79  
     public String getCampusCode() {
 80  
 
 81  0
         return campusCode;
 82  
     }
 83  
 
 84  
     public void setCampusCode(String campusCode) {
 85  0
         this.campusCode = campusCode;
 86  0
     }
 87  
 
 88  
     public boolean isHiddenIndicator() {
 89  
 
 90  0
         return hiddenIndicator;
 91  
     }
 92  
 
 93  
     public void setHiddenIndicator(boolean hiddenIndicator) {
 94  0
         this.hiddenIndicator = hiddenIndicator;
 95  0
     }
 96  
 
 97  
     public String getInternationalProvinceName() {
 98  
 
 99  0
         return internationalProvinceName;
 100  
     }
 101  
 
 102  
     public void setInternationalProvinceName(String internationalProvinceName) {
 103  0
         this.internationalProvinceName = internationalProvinceName;
 104  0
     }
 105  
 
 106  
     public String getAttentionName() {
 107  
 
 108  0
         return attentionName;
 109  
     }
 110  
 
 111  
     public void setAttentionName(String attentionName) {
 112  0
         this.attentionName = attentionName;
 113  0
     }
 114  
 
 115  
     public String getCityName() {
 116  
 
 117  0
         return cityName;
 118  
     }
 119  
 
 120  
     public void setCityName(String cityName) {
 121  0
         this.cityName = cityName;
 122  0
     }
 123  
 
 124  
     public String getCountryCode() {
 125  
 
 126  0
         return countryCode;
 127  
     }
 128  
 
 129  
     public void setCountryCode(String countryCode) {
 130  0
         this.countryCode = countryCode;
 131  0
     }
 132  
 
 133  
     public String getLine1Address() {
 134  
 
 135  0
         return line1Address;
 136  
     }
 137  
 
 138  
     public void setLine1Address(String line1Address) {
 139  0
         this.line1Address = line1Address;
 140  0
     }
 141  
 
 142  
     public String getLine2Address() {
 143  
 
 144  0
         return line2Address;
 145  
     }
 146  
 
 147  
     public void setLine2Address(String line2Address) {
 148  0
         this.line2Address = line2Address;
 149  0
     }
 150  
 
 151  
     public String getZipCode() {
 152  
 
 153  0
         return zipCode;
 154  
     }
 155  
 
 156  
     public void setZipCode(String zipCode) {
 157  0
         this.zipCode = zipCode;
 158  0
     }
 159  
 
 160  
     public String getStateCode() {
 161  
 
 162  0
         return stateCode;
 163  
     }
 164  
 
 165  
     public void setStateCode(String stateCode) {
 166  0
         this.stateCode = stateCode;
 167  0
     }
 168  
 
 169  
     public String getYesNoWithBlankIndicator() {
 170  
 
 171  0
         return yesNoWithBlankIndicator;
 172  
     }
 173  
 
 174  
     public void setYesNoWithBlankIndicator(String yesNoWithBlankIndicator) {
 175  0
         this.yesNoWithBlankIndicator = yesNoWithBlankIndicator;
 176  0
     }
 177  
 
 178  
     public String getYesNoWithoutBlankIndicator() {
 179  
 
 180  0
         return yesNoWithoutBlankIndicator;
 181  
     }
 182  
 
 183  
     public void setYesNoWithoutBlankIndicator(String yesNoWithoutBlankIndicator) {
 184  0
         this.yesNoWithoutBlankIndicator = yesNoWithoutBlankIndicator;
 185  0
     }
 186  
 
 187  
     public String getPhoneNumberNoValidation() {
 188  
 
 189  0
         return phoneNumberNoValidation;
 190  
     }
 191  
 
 192  
     public void setPhoneNumberNoValidation(String phoneNumberNoValidation) {
 193  0
         this.phoneNumberNoValidation = phoneNumberNoValidation;
 194  0
     }
 195  
 
 196  
     public String getPhoneNumberWithValidation() {
 197  
 
 198  0
         return phoneNumberWithValidation;
 199  
     }
 200  
 
 201  
     public void setPhoneNumberWithValidation(String phoneNumberWithValidation) {
 202  0
         this.phoneNumberWithValidation = phoneNumberWithValidation;
 203  0
     }
 204  
 
 205  
     public String getGenericUrlAddress() {
 206  
 
 207  0
         return genericUrlAddress;
 208  
     }
 209  
 
 210  
     public void setGenericUrlAddress(String genericUrlAddress) {
 211  0
         this.genericUrlAddress = genericUrlAddress;
 212  0
     }
 213  
 
 214  
 
 215  
 }