source: vlo/trunk/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/dao/DaoLocator.java @ 2788

Last change on this file since 2788 was 2788, checked in by keeloo, 11 years ago

Added landing page key values to the Resources.java file and created a landing page link panel. Added the panel to the results page.

File size: 357 bytes
RevLine 
[719]1package eu.clarin.cmdi.vlo.dao;
2
[2788]3import eu.clarin.cmdi.vlo.VloWebApplication;
[719]4import org.apache.wicket.RequestCycle;
5
6public final class DaoLocator {
7
8    public static SearchResultsDao getSearchResultsDao()
9    {
[2659]10        VloWebApplication app = (VloWebApplication)RequestCycle.get().getApplication();
[719]11        return app.getSearchResultsDao();
12    }
13   
14}
Note: See TracBrowser for help on using the repository browser.