blob: cc5c1cf4479049f1b067b65956061466e6cb8d9a [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.aai.util;
24
25
26import org.onap.portalsdk.core.util.SystemProperties;
27
28public class AAIProperties extends SystemProperties {
29
30 //VID Specific
31 public static final String AAI_SERVER_URL_BASE = "aai.server.url.base";
32
33 /** The Constant AAI_SERVER_URL. */
34 public static final String AAI_SERVER_URL = "aai.server.url";
35
36 /** The Constant AAI_OLDSERVER_URL_BASE. */
37 public static final String AAI_OLDSERVER_URL_BASE = "aai.oldserver.url.base";
38
39 /** The Constant AAI_OLDSERVER_URL. */
40 public static final String AAI_OLDSERVER_URL = "aai.oldserver.url";
41
42 /** The Constant AAI_TRUSTSTORE_FILENAME. */
43 public static final String AAI_TRUSTSTORE_FILENAME = "aai.truststore.filename";
44
45 /** The Constant AAI_TRUSTSTORE_PASSWD_X. */
46 public static final String AAI_TRUSTSTORE_PASSWD_X = "aai.truststore.passwd.x";
47
48 /** The Constant AAI_KEYSTORE_FILENAME. */
49 public static final String AAI_KEYSTORE_FILENAME = "aai.keystore.filename";
50
51 /** The Constant AAI_KEYSTORE_PASSWD_X. */
52 public static final String AAI_KEYSTORE_PASSWD_X = "aai.keystore.passwd.x";
53
54 /** The Constant AAI_VID_USERNAME. */
55 public static final String AAI_VID_USERNAME = "aai.vid.username";
56
57 /** The Constant AAI_VID_PASSWD_X. */
58 public static final String AAI_VID_PASSWD_X = "aai.vid.passwd.x";
59
60 /** The Constant FILESEPARTOR. */
61 public static final String FILESEPARTOR = (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
62
63 /** The Constant AAI_USE_CLIENT_CERT */
64 public static final String AAI_USE_CLIENT_CERT = "aai.use.client.cert";
65
66}