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