Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
theodolite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sören Henning
theodolite
Commits
59e5f1e6
Commit
59e5f1e6
authored
5 years ago
by
Benedikt Wetzel
Browse files
Options
Downloads
Patches
Plain Diff
clean up
parent
b531fed4
No related branches found
No related tags found
1 merge request
!1
Add Implementations of Use Cases
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
uc1-application/resources/META-INF/application.properties
+0
-10
0 additions, 10 deletions
uc1-application/resources/META-INF/application.properties
uc1-application/src/main/java/uc1/application/ConfigurationKeys.java
+8
-23
8 additions, 23 deletions
...tion/src/main/java/uc1/application/ConfigurationKeys.java
with
8 additions
and
33 deletions
uc1-application/resources/META-INF/application.properties
+
0
−
10
View file @
59e5f1e6
cassandra.host
=
localhost
cassandra.port
=
9042
cassandra.keyspace
=
titanccp
cassandra.init.timeout.ms
=
30000
webserver.enable
=
true
webserver.port
=
8081
webserver.cors
=
true
webserver.gzip
=
false
kafka.bootstrap.servers
=
localhost:9092
kafka.bootstrap.servers
=
localhost:9092
kafka.input.topic
=
input
kafka.input.topic
=
input
kafka.output.topic
=
output
kafka.output.topic
=
output
...
...
This diff is collapsed.
Click to expand it.
uc1-application/src/main/java/uc1/application/ConfigurationKeys.java
+
8
−
23
View file @
59e5f1e6
...
@@ -5,34 +5,19 @@ package uc1.application;
...
@@ -5,34 +5,19 @@ package uc1.application;
*/
*/
public
final
class
ConfigurationKeys
{
public
final
class
ConfigurationKeys
{
public
static
final
String
CASSANDRA_HOST
=
"cassandra.host
"
;
public
static
final
String
KAFKA_BOOTSTRAP_SERVERS
=
"kafka.bootstrap.servers
"
;
public
static
final
String
CASSANDRA_PORT
=
"cassandra.port
"
;
public
static
final
String
KAFKA_OUTPUT_TOPIC
=
"kafka.output.topic
"
;
public
static
final
String
CASSANDRA_KEYSPACE
=
"cassandra.keyspace
"
;
public
static
final
String
KAFKA_INPUT_TOPIC
=
"kafka.input.topic
"
;
public
static
final
String
CASSANDRA_INIT_TIMEOUT_MS
=
"cassandra.init.timeout.m
s"
;
public
static
final
String
NUM_THREADS
=
"num.thread
s"
;
public
static
final
String
WEBSERVER_ENABLE
=
"webserver.enable
"
;
public
static
final
String
COMMIT_INTERVAL_MS
=
"commit.interval.ms
"
;
public
static
final
String
WEBSERVER_PORT
=
"webserver.port
"
;
public
static
final
String
CACHE_MAX_BYTES_BUFFERING
=
"cache.max.bytes.buffering
"
;
public
static
final
String
WEBSERVER_CORS
=
"webserver.cors"
;
private
ConfigurationKeys
()
{
}
public
static
final
String
WEBSERVER_GZIP
=
"webserver.gzip"
;
public
static
final
String
KAFKA_BOOTSTRAP_SERVERS
=
"kafka.bootstrap.servers"
;
public
static
final
String
KAFKA_OUTPUT_TOPIC
=
"kafka.output.topic"
;
public
static
final
String
KAFKA_INPUT_TOPIC
=
"kafka.input.topic"
;
public
static
final
String
NUM_THREADS
=
"num.threads"
;
public
static
final
String
COMMIT_INTERVAL_MS
=
"commit.interval.ms"
;
public
static
final
String
CACHE_MAX_BYTES_BUFFERING
=
"cache.max.bytes.buffering"
;
private
ConfigurationKeys
()
{}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment