So I have a 'User' entity class and then my Login class. So in my login I
should have:


        private String username;
        private String password;        
        
        @Inject 
        private ApplicationStateManager stateManager; 
        
        private Object userDao;

        User user = userDao.get(username); 
        stateManager.set(User.class, users);
        User user = stateManager.get(User.class); 
-- 
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Tapestry-app-using-JDBC-tp3390993p3393984.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to