KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > de > webman > sync > ACLAdaptorFactory


1 package de.webman.sync;
2
3
4 /**
5  * Factory type for {@link de.webman.sync.ACLAdaptor} implementations
6  *
7  * @author <a HREF="mailto:gregor@webman.de">Gregor Klinke</a>
8  * @version $Revision: 1.2 $
9  **/

10 public interface ACLAdaptorFactory
11 {
12     /* $Id: ACLAdaptorFactory.java,v 1.2 2002/04/12 14:56:01 gregor Exp $ */
13
14     /**
15      * create new acl adaptor instance
16      * @return the new adaptor
17      * @throws SyncException if anything failed
18      **/

19     ACLAdaptor newACLAdaptor() throws SyncException;
20     
21     
22     /**
23      * set properties which influences acl adaptor creation
24      * @param key the key
25      * @param val the value
26      **/

27     void setProperty(String JavaDoc key, Object JavaDoc val);
28 }
29
Popular Tags