Package com.springsource.greenhouse.activity.action

Examples of com.springsource.greenhouse.activity.action.JdbcActionRepository


 
  public JdbcInviteRepositoryTest() {
    EmbeddedDatabase db = new GreenhouseTestDatabaseBuilder().member().activity().invite().testData(getClass()).getDatabase();
    transactional = new Transactional(db);
    jdbcTemplate = new JdbcTemplate(db);
    JdbcActionRepository actionRepository = new JdbcActionRepository(jdbcTemplate, new ActionGateway() {
      public void actionPerformed(Action action) {
      }
    });
    inviteRepository = new JdbcInviteRepository(jdbcTemplate, actionRepository);
  }
View Full Code Here

TOP

Related Classes of com.springsource.greenhouse.activity.action.JdbcActionRepository

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.