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.endow.businessobject;
017
018 import java.util.LinkedHashMap;
019
020 import org.kuali.rice.kns.bo.TransientBusinessObjectBase;
021 import org.kuali.rice.kns.util.KualiDecimal;
022
023 public class TransactioneDocPostingDocumentExceptionReportLine extends TransientBusinessObjectBase {
024
025 private String documentNumber;
026 private String documentName;
027 private String lineType;
028 private String lineNumber;
029 private String reason;
030
031 /**
032 * Gets the documentNumber attribute.
033 * @return Returns the documentNumber.
034 */
035 public String getDocumentNumber() {
036 return documentNumber;
037 }
038
039 /**
040 * Sets the documentNumber attribute value.
041 * @param documentNumber The documentNumber to set.
042 */
043 public void setDocumentNumber(String documentNumber) {
044 this.documentNumber = documentNumber;
045 }
046
047 /**
048 * Gets the documentName attribute.
049 * @return Returns the documentName.
050 */
051 public String getDocumentName() {
052 return documentName;
053 }
054
055 /**
056 * Sets the documentName attribute value.
057 * @param documentName The documentName to set.
058 */
059 public void setDocumentName(String documentName) {
060 this.documentName = documentName;
061 }
062
063 /**
064 * Gets the lineType attribute.
065 * @return Returns the lineType.
066 */
067 public String getLineType() {
068 return lineType;
069 }
070
071 /**
072 * Sets the lineType attribute value.
073 * @param lineType The lineType to set.
074 */
075 public void setLineType(String lineType) {
076 this.lineType = lineType;
077 }
078
079 /**
080 * Gets the lineNumber attribute.
081 * @return Returns the lineNumber.
082 */
083 public String getLineNumber() {
084 return lineNumber;
085 }
086
087 /**
088 * Sets the lineNumber attribute value.
089 * @param lineNumber The lineNumber to set.
090 */
091 public void setLineNumber(String lineNumber) {
092 this.lineNumber = lineNumber;
093 }
094
095 /**
096 * Gets the reason attribute.
097 * @return Returns the reason.
098 */
099 public String getReason() {
100 return reason;
101 }
102
103 /**
104 * Sets the reason attribute value.
105 * @param reason The reason to set.
106 */
107 public void setReason(String reason) {
108 this.reason = reason;
109 }
110
111 @Override
112 protected LinkedHashMap<Object, Object> toStringMapper() {
113 return new LinkedHashMap<Object, Object>();
114 }
115
116
117 }