Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.inkubator.hrm.web.search; import org.apache.commons.lang.StringUtils; import com.inkubator.webcore.util.SearchParameter; /** * * @author rizkykojek */ public class AppraisalProgramSearchParameter extends SearchParameter { private String name; public String getName() { if (StringUtils.equalsIgnoreCase(getKeyParam(), "name")) { name = getParameter(); } else { name = null; } return name; } public void setName(String name) { this.name = name; } }