Recovery from the great disk crash of 2010: Sync all files to the last decompiled...
[jgroupdav.git] / src / main / java / net / bionicmessage / groupdav / DAVServerFactory.java
blobd2815273d666e8db1e584ae234303beed3746b40
1 package net.bionicmessage.groupdav;
3 import java.net.URI;
5 public class DAVServerFactory
7 public static DAVServer getServer(URI host)
8 throws Exception
10 DAVServer srv = new GroupDAV2Server();
11 srv.setServer(host.toString());
12 return srv;