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.console;
09:
10: //base classes
11: import java.net.URL;
12:
13: //project specific classes
14:
15: //other classes
16:
17: public class ConsoleServiceCallerFactory {
18:
19: private ConsoleServiceCallerFactory() {
20: }
21:
22: public final static ConsoleService getConsoleService() {
23: return new ConsoleServiceBean();
24: }
25: }
|