/* * To change this template, choose Tools | Templates * and open the template in the editor. */ /** * * @author Nitin */ public class BeanSecond { private Integer id; private String name; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String getName() { return name; } public void setName(String name) { this.name = name; } public BeanSecond(Integer id, String name) { this.id = id; this.name = name; } }