/** Return an example claim instance. */ public static HealthClaim example2() { HealthClaim healthClaim = new HealthClaim(); healthClaim.setId(201); healthClaim.setDisease("TB"); healthClaim.setAmount(7000); return healthClaim; }
/** Return an example claim instance. */ public static HealthClaim example1() { HealthClaim healthClaim = new HealthClaim(); healthClaim.setId(200); healthClaim.setDisease("Flu"); healthClaim.setAmount(1000); return healthClaim; }