-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapplication.properties
65 lines (46 loc) · 2.1 KB
/
application.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
bot.name=RdfImportBot
# Uri of our bot (this doesn't matter much)
won.owner.uri=https://localhost:8443/owner
# Uri of the node we want to connect to
won.node.uri=${WON_NODE_URI}
#Dependent configs, you don't need to change them
uri.prefix.node.default=${won.node.uri}
won.node.uris=${uri.prefix.node.default}/resource
# default WON node URI
uri.node.default=${uri.prefix.node.default}/resource
#the protocol URIs below must match what's defined in the sun-jaxws.xml file in the webapp
uri.atom.protocol.endpoint.default=${uri.prefix.node.default}/protocol/owner
uri.prefix.owner=${won.owner.uri}
uri.owner.protocol.endpoint=${uri.prefix.owner}/protocol
# BotContext can either be memoryBotContext or mongoBotContext for now
botContext.impl=memoryBotContext
# The following attributes are only necessary if mongoBotContext is chosen
# botContext.mongodb.user=won
# botContext.mongodb.pass=won
# botContext.mongodb.host=localhost
# botContext.mongodb.port=27017
# botContext.mongodb.database=won
# ########################################################################
keystores.password=changeit
keystores.directory=${WON_KEYSTORE_DIR}
# keystore properties
keystore.password=${keystores.password}
keystore.location=${keystores.directory}bot-keys.jks
# truststore properties
truststore.password=${keystores.password}
truststore.location=${keystores.directory}owner-trusted-certs.jks
# DB - Alternative: local hsql
db.sql.jdbcDriverClass=org.hsqldb.jdbcDriver
db.sql.jdbcUrl=jdbc:hsqldb:mem:testdb2;hsqldb.tx=mvcc
db.sql.user=sa
db.sql.password=
db.ddl.strategy=create
matcher.uri=http://localhost:8080/matcher
# properties specific to the won-rdfimport-bot
# import folder, checked by the bot at startup.
rdfimport.bot.importfolder.atoms=./rdfimport/atoms
rdfimport.bot.importfolder.connections=./rdfimport/connections
# number of WoN messages the bot will aim for being in-flight (sent, but succeess/failure response not yet received)
rdfimport.bot.targetInflightCount=70
# number of WoN messages the bot will maximally accept being in-flight (sent, but succeess/failure response not yet received)
rdfimport.bot.maxInflightCount=100