Upgrade AAI API version to v16
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / util / AAIProperties.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 - 2019 AT&T Intellectual Property. All rights reserved.
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 package org.onap.vid.aai.util;
22
23
24 import org.onap.portalsdk.core.util.SystemProperties;
25
26 /**
27  * The Class AAIProperties.
28  */
29 public class AAIProperties extends SystemProperties {
30
31         /** The Constant AAI_SERVER_URL_BASE. */
32         //VID Specific
33         public static final String AAI_SERVER_URL_BASE = "aai.server.url.base";
34         
35         /** The Constant AAI_SERVER_URL. */
36         public static final String AAI_SERVER_URL = "aai.server.url";
37         
38         /** The Constant AAI_TRUSTSTORE_FILENAME. */
39         public static final String AAI_TRUSTSTORE_FILENAME = "aai.truststore.filename";
40         
41         /** The Constant AAI_TRUSTSTORE_PASSWD_X. */
42         public static final String AAI_TRUSTSTORE_PASSWD_X = "aai.truststore.passwd.x";
43         
44         /** The Constant AAI_KEYSTORE_FILENAME. */
45         public static final String AAI_KEYSTORE_FILENAME = "aai.keystore.filename";
46         
47         /** The Constant AAI_KEYSTORE_PASSWD_X. */
48         public static final String AAI_KEYSTORE_PASSWD_X = "aai.keystore.passwd.x";
49                 
50         /** The Constant AAI_VID_USERNAME. */
51         public static final String AAI_VID_USERNAME = "aai.vid.username";
52
53         /** The Constant AAI_VID_PASSWD_X. */
54         public static final String AAI_VID_PASSWD_X = "aai.vid.passwd.x";
55         
56         /** The Constant FILESEPARTOR. */
57         public static final String FILESEPARTOR = (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
58
59         /** The Constant AAI_USE_CLIENT_CERT */
60         public static final String AAI_USE_CLIENT_CERT = "aai.use.client.cert";
61         
62 }