]> git.somenet.org - pub/jan/dst18.git/blob - ass1-kv/src/main/java/dst/ass1/kv/ISessionManagerFactory.java
Add template for assignment 1
[pub/jan/dst18.git] / ass1-kv / src / main / java / dst / ass1 / kv / ISessionManagerFactory.java
1 package dst.ass1.kv;
2
3 import java.util.Properties;
4
5 import dst.ass1.kv.ISessionManager;
6
7 public interface ISessionManagerFactory {
8     /**
9      * Creates an implementation of an {@link ISessionManager}.
10      *
11      * @param properties the properties to use for instantiation
12      * @return a session manager object
13      */
14     ISessionManager createSessionManager(Properties properties);
15 }