package be.selckin.swu.pmodel.test; public class Bar { private String hello; private Integer moo; public String getHello() { return hello; } public void setHello(String hello) { this.hello = hello; } public Integer getMoo() { return moo; } public void setMoo(Integer moo) { this.moo = moo; } }