i was working on integrating JSF(richFaces), Spring, Hibernate. I have a problem of passing a parameter to a non POJO class Suppose say username is property of LoginPojo.java and I want to pass the parameter to a class in same package say LoginBean.java.
If i want to access the parameter LoginForm.username(sent from Login.jsf) in LoginPojo i can use it as getusername(); But if I want to use in LoginBean.java how do i do it?