01: /*
02: * JFolder, Copyright 2001-2006 Gary Steinmetz
03: *
04: * Distributable under LGPL license.
05: * See terms of license at gnu.org.
06: */
07:
08: package org.jfolder.platforms.stores.base;
09:
10: //base classes
11:
12: //project specific classes
13: import org.jfolder.common.UnexpectedSystemException;
14: import org.jfolder.common.utils.misc.MiscHelper;
15:
16: //other classes
17:
18: public interface ApplicationDataSourceResolver {
19:
20: public String getActualDataSourceName(String inHandle);
21:
22: public String getActualWebTemplateLocation(String inHandle);
23:
24: //
25: public abstract String getRelativeWebPageLocation(String inName);
26:
27: }
|