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.services.config;
09:
10: //base classes
11: import java.net.URL;
12:
13: //project specific classes
14:
15: //other classes
16:
17: public class ConfigServiceCallerFactory {
18:
19: private ConfigServiceCallerFactory() {
20: }
21:
22: public final static ConfigServiceCaller getConfigServiceCaller(
23: URL inUrl) {
24: return new ConfigServiceCallerBean(inUrl);
25: }
26:
27: public final static ConfigService getConfigService() {
28: return new ConfigServiceBean();
29: }
30: }
|