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.dms;
09:
10: //base classes
11: import java.net.URL;
12:
13: //project specific classes
14:
15: //other classes
16:
17: public class DMSServiceCallerFactory {
18:
19: private DMSServiceCallerFactory() {
20: }
21:
22: //public final static DMSServiceCaller getDMSServiceCaller(URL inUrl) {
23: // return new DMSServiceCallerBean(inUrl);
24: //}
25:
26: public final static DMSService getDMSService() {
27: return new DMSServiceBean();
28: }
29: }
|