forked from pravega/pravega-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.java
24 lines (22 loc) · 835 Bytes
/
Constants.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
* Copyright (c) 2017 Dell Inc., or its subsidiaries. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*/
package io.pravega.example.gettingstarted;
/**
* Defines a handful of constants shared by classes in this package.
*
*/
public class Constants {
protected static final String DEFAULT_SCOPE = "examples";
protected static final String DEFAULT_STREAM_NAME = "helloStream";
protected static final String DEFAULT_CONTROLLER_URI = "tcp://127.0.0.1:9090";
protected static final String DEFAULT_ROUTING_KEY = "helloRoutingKey";
protected static final String DEFAULT_MESSAGE = "hello world";
}