actually adding the files to the initial commit
[vid.git] / vid / src / main / java / org / openecomp / aai / util / AAIProperties.java
1 /*-
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");
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.openecomp.aai.util;
22
23 import org.openecomp.portalsdk.core.util.SystemProperties;
24
25 /**
26  * The Class AAIProperties.
27  */
28 public class AAIProperties extends SystemProperties {
29
30         /** The Constant AAI_SERVER_URL_BASE. */
31         //VID Specific
32         public static final String AAI_SERVER_URL_BASE = "aai.server.url.base";
33         
34         /** The Constant AAI_SERVER_URL. */
35         public static final String AAI_SERVER_URL = "aai.server.url";
36         
37         /** The Constant AAI_OLDSERVER_URL_BASE. */
38         public static final String AAI_OLDSERVER_URL_BASE = "aai.oldserver.url.base";
39         
40         /** The Constant AAI_OLDSERVER_URL. */
41         public static final String AAI_OLDSERVER_URL = "aai.oldserver.url";
42         
43         /** The Constant AAI_TRUSTSTORE_FILENAME. */
44         public static final String AAI_TRUSTSTORE_FILENAME = "aai.truststore.filename";
45         
46         /** The Constant AAI_TRUSTSTORE_PASSWD_X. */
47         public static final String AAI_TRUSTSTORE_PASSWD_X = "aai.truststore.passwd.x";
48         
49         /** The Constant AAI_KEYSTORE_FILENAME. */
50         public static final String AAI_KEYSTORE_FILENAME = "aai.keystore.filename";
51         
52         /** The Constant AAI_KEYSTORE_PASSWD_X. */
53         public static final String AAI_KEYSTORE_PASSWD_X = "aai.keystore.passwd.x";
54                 
55         /** The Constant AAI_VID_USERNAME. */
56         public static final String AAI_VID_USERNAME = "aai.vid.username";
57
58         /** The Constant AAI_VID_PASSWD_X. */
59         public static final String AAI_VID_PASSWD_X = "aai.vid.passwd.x";
60         
61         /** The Constant FILESEPARTOR. */
62         public static final String FILESEPARTOR = (System.getProperty("file.separator") == null) ? "/" : System.getProperty("file.separator");
63         
64 }