Java Reference
In-Depth Information
}
public Class getFormbeanClass() {
return ClaimFormbean.class;
}
}
Listing 3-39 shows the form bean.
Listing 3-39. ClaimFormbean.java
public class ClaimFormbean implements Serializable {
private String claimantName;
private String policyNo;
private String productCd;
public String getClaimantName() {
return claimantName;
}
public void setClaimantName(String claimantName) {
this.claimantName = claimantName;
}
public String getPolicyNo() {
return policyNo;
}
public void setPolicyNo(String policyNo) {
this.policyNo = policyNo;
}
public String getProductCd() {
return productCd;
}
public void setProductCd(String productCd) {
this.productCd = productCd;
}
}
Search WWH ::




Custom Search