001 /*
002 * Copyright 2011 The Kuali Foundation.
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016 package org.kuali.kfs.module.ld.businessobject;
017
018 import org.kuali.kfs.integration.ld.LaborLedgerBalanceForEffortCertification;
019
020 /**
021 * This class...
022 */
023 public class LedgerBalanceForEffortCertification extends LedgerBalance implements LaborLedgerBalanceForEffortCertification{
024
025 private String effortCertificationReportNumber;
026
027 /**
028 * Gets the effortCertificationReportNumber attribute.
029 *
030 * @return Returns the effortCertificationReportNumber.
031 */
032 public String getEffortCertificationReportNumber() {
033 return effortCertificationReportNumber;
034 }
035
036 /**
037 * Sets the effortCertificationReportNumber attribute value.
038 *
039 * @param effortCertificationReportNumber The effortCertificationReportNumber to set.
040 */
041 public void setEffortCertificationReportNumber(String effortCertificationReportNumber) {
042 this.effortCertificationReportNumber = effortCertificationReportNumber;
043 }
044 }