/*
 * Created on Mar 27, 2004
 *
 * This class contains the session data for the current member.
 */

package prototype;

/**
 *
 * A sample Java bean that stores portlet instance data in portlet session.
 *
 */
public class MemberSessionBean {
	
	//**********************************************************
	//* Last text for the text form
	//**********************************************************

    private String formText = "";
    private String memberID = "";
	private String claimID = "";
	private String prevClaimID = "";
	private String nextClaimID = "";

	/**
	 * Set last text for the text form.
	 * 
	 * @param formText last text for the text form.
	 */
    public void setFormText(String formText) {
        this.formText = formText;
    }

	/**
	 * Get last text for the text form.
	 * 
	 * @return last text for the text form
	 */
    public String getFormText() {
        return this.formText;
    }

	/**
	 * Returns the id of the current member.
	 */
	public String getMemberID() {
		return memberID;
	}

	/**
	 * Sets the current id for the member to the given string.
	 */
	public void setMemberID(String string) {
		memberID = string;
	}

	/**
	 * Returns the next claim for the current member.
	 */
	public String getNextClaimID() {
		return nextClaimID;
	}

	/**
	 * Returns the previous claim for the current member.
	 */
	public String getPrevClaimID() {
		return prevClaimID;
	}

	/**
	 * Sets the next claim id for the member to the given string.
	 */
	public void setNextClaimID(String string) {
		nextClaimID = string;
	}

	/**
	 * Sets the previous claim id for the member to the given string.
	 */
	public void setPrevClaimID(String string) {
		prevClaimID = string;
	}

	/**
	 * Returns the current claim for the current member.
	 */
	public String getClaimID() {
		return claimID;
	}

	/**
	 * Sets the current claim id for the member to the given string.
	 */
	public void setClaimID(String string) {
		claimID = string;
	}

}
/*
 * $Log: MemberSessionBean.java,v $
 * Revision 1.5  2004/05/11 21:36:07  jjf3692
 * Commented files for Excellus delivery.
 *
 * Revision 1.4  2004/04/22 22:29:15  cxh2620
 * fixed user 3
 *
*/