Fix path to various non-standard directories
[staging/basesystem.git] / service / native / framework_unified / client / include / native_service / ns_np_types.h
1 /*
2  * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 //////////////////////////////////////////////////////////////////////////////////////////////////
18 /// \ingroup tag_NPServiceIf
19 /// \brief
20 ///
21 ///
22 //////////////////////////////////////////////////////////////////////////////////////////////////
23
24 #ifndef FRAMEWORK_UNIFIED_CLIENT_NS_NPSERVICEIF_INCLUDE_NS_NP_TYPES_H_
25 #define FRAMEWORK_UNIFIED_CLIENT_NS_NPSERVICEIF_INCLUDE_NS_NP_TYPES_H_
26
27 // Path of immediate notification data in NS_NPS version 1
28 #define IMMEDIATE_PERSISTENCE_STORAGE_V1        "/var/local/lib/basesystem/nv/BS/ns/npp/rwdata/NPSNOR/"
29
30 // Path of immediate notification data in NS_NPS version 2
31 #define IMMEDIATE_PERSISTENCE_STORAGE_V2        "/var/local/lib/basesystem/nv/BS/ns/npp/rwdata/"
32
33 // name of persistence folder for persistent type categorization
34 #define USERDATADIR     "UserData/"   // stores all the user data (all user common data as well as user specific data)
35 #define FACTORYDATADIR               "FactoryData/"              // stores all the factory data
36 #define FACTORYCUSTOMERDATADIR       "FactoryCustomerData/"      // store all the factory customer data
37 #define DEALERDATADIR                "DealerData/"               // stores all the dealer data
38
39 #define IMMEDIATEDATADIR   "__ImmNotfn/"  // all immediate notification are stored under this folder name
40
41 // folder for storing userdata common for all user
42 #define ALLUSERAPPDATADIR            "AllUserAppData/"
43
44 #define RELEASETEMP_DIR              "/nps_tmp/"
45 #define RELEASETEMP_FILENAME         "/ReleaseWork.nps_tmp"
46
47 #endif  // FRAMEWORK_UNIFIED_CLIENT_NS_NPSERVICEIF_INCLUDE_NS_NP_TYPES_H_