Migrate Spike code to ONAP
[aai/spike.git] / src / main / java / org / onap / aai / spike / util / SpikeConstants.java
1 /**
2  * ============LICENSE_START=======================================================
3  * Spike
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property.
6  * Copyright © 2017 Amdocs
7  * All rights reserved.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *    http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  *
22  * ECOMP and OpenECOMP are trademarks
23  * and service marks of AT&T Intellectual Property.
24  */
25 package org.onap.aai.spike.util;
26
27 public class SpikeConstants {
28     // Logging related
29     public static final String SPIKE_SERVICE_NAME = "spike";
30
31     public static final String SPIKE_FILESEP =
32             (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
33
34     public static final String SPIKE_SPECIFIC_CONFIG = System.getProperty("CONFIG_HOME") + SPIKE_FILESEP;
35
36     public static final String SPIKE_HOME_MODEL = SPIKE_SPECIFIC_CONFIG + "model" + SPIKE_FILESEP;
37     public static final String SPIKE_EVENT_POLL_INTERVAL = "spike.event.poll.interval";
38     public static final String SPIKE_EVENT_QUEUE_CAPACITY = "spike.event.queue.capacity";
39     public static final String SPIKE_EVENT_QUEUE_DELAY = "spike.event.queue.delay";
40     public static final String SPIKE_EVENT_OFFSET_CHECK_PERIOD = "spike.event.offset.period";
41     public static final String SPIKE_PROPS_RESERVED = "spike.props.reserved";
42     public static final String SPIKE_CONFIG_FILE = SPIKE_SPECIFIC_CONFIG + "spike.properties";
43 }