Package com.wesabe.grendel.entities.dao

Examples of com.wesabe.grendel.entities.dao.DocumentDAO


    protected Session session;
    protected DocumentDAO dao;
   
    public void setup() throws Exception {
      this.session = mock(Session.class);
      this.dao = new DocumentDAO(new Provider<Session>() {
        @Override
        public Session get() {
          return session;
        }
      });
View Full Code Here

TOP

Related Classes of com.wesabe.grendel.entities.dao.DocumentDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.