Port champ-microservice project restructure
[aai/champ.git] / champ-service / src / main / java / org / onap / champ / util / ChampServiceConstants.java
1 package org.onap.champ.util;
2
3 public class ChampServiceConstants {
4   public static final String CHAMP_FILESEP = (System.getProperty("file.separator") == null) ? "/"
5       : System.getProperty("file.separator");
6
7   public static final String CHAMP_SPECIFIC_CONFIG = System.getProperty("CONFIG_HOME") + CHAMP_FILESEP;
8   public static final String CHAMP_CONFIG_FILE = CHAMP_SPECIFIC_CONFIG + "champ-api.properties";
9   public static final String CHAMP_KEY_NAME = "keyName";
10   public static final String CHAMP_SOT_NAME = "sourceOfTruthName";
11   public static final String CHAMP_CREATED_TS_NAME = "createdTsName";
12   public static final String CHAMP_LAST_MOD_TS_NAME = "lastModTsName";
13   public static final String CHAMP_COLLECTION_PROPERTIES_KEY = "collectionPropertiesKey";
14 }