repo.or.cz
/
jgroupdav.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
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
blob
d2815273d666e8db1e584ae234303beed3746b40
1
package
net
.
bionicmessage
.
groupdav
;
2
3
import
java
.
net
.
URI
;
4
5
public class
DAVServerFactory
6
{
7
public static
DAVServer
getServer
(
URI host
)
8
throws
Exception
9
{
10
DAVServer srv
=
new
GroupDAV2Server
();
11
srv
.
setServer
(
host
.
toString
());
12
return
srv
;
13
}
14
}