blob: 6b7f98738fcf55aae2cb8c445b8fbc9a15200d79 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.taglibs.rdc.sampleapps.mortgage;
/**
* The application bean for the sample mortgage application
*
* @author Rahul
*
*/
public class MortgageAppBean {
// The member number of the user
String memberNumber;
// The multiple listing service number of the property
String mlsNumber;
// The value of the property with the given M.L.S. number
String propertyValue;
// The down payment for the mortgage
String downPayment;
// The transaction number of the escrow account transfer
String transactionNum;
// The result code for the escrow account transfer
String resultCode;
/*
* Constructor
*/
public MortgageAppBean() {
this.memberNumber = null;
this.mlsNumber = null;
this.propertyValue = null;
this.downPayment = null;
this.transactionNum = null;
this.resultCode = null;
}
/**
* Gets the down payment for the mortgage
*
* @return String the down payment
*/
public String getDownPayment() {
return downPayment;
}
/**
* Gets the member number
*
* @return String the member number
*/
public String getMemberNumber() {
return memberNumber;
}
/**
* Gets the multiple listing service number
*
* @return String the MLS number
*/
public String getMlsNumber() {
return mlsNumber;
}
/**
* Gets the property value
*
* @return String the property value
*/
public String getPropertyValue() {
return propertyValue;
}
/**
* Gets the property value
*
* @return String the property value
*/
public String getTransactionNum() {
return transactionNum;
}
/**
* Gets the result code
*
* @return String the result code
*/
public String getResultCode() {
return resultCode;
}
/**
* Sets the down payment for the mortgage
*
* @param String the new down payment
*/
public void setDownPayment(String string) {
downPayment = string;
}
/**
* Sets the member number
*
* @param String the new member number
*/
public void setMemberNumber(String string) {
memberNumber = string;
}
/**
* Sets the multiple listing service number
*
* @param String the new MLS number
*/
public void setMlsNumber(String string) {
mlsNumber = string;
}
/**
* Sets the property value
*
* @param String the new property value
*/
public void setPropertyValue(String string) {
propertyValue = string;
}
/**
* Sets the transaction number
*
* @param String the new transaction number
*/
public void setTransactionNum(String string) {
transactionNum = string;
}
/**
* Sets the result code
*
* @param String the new result code
*/
public void setResultCode(String string) {
resultCode = string;
}
}