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