c6723107fecaa2d6ac05d5c953b8588154ea9d30
[profile/ivi/wrt-plugins-tizen.git] / src / platform / API / Messaging / FolderFilterValidatorFactory.cpp
1 /*
2 * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * FolderFilterValidatorFactory.cpp
18  *
19  *  Created on: 2011. 10. 27.
20  *      Author: sangtai
21  */
22
23 #include "FolderFilterValidatorFactory.h"
24
25 using namespace TizenApis::Api::Tizen;
26
27 namespace TizenApis {
28         namespace Platform {
29                 namespace Messaging {
30
31                 const std::string FolderFilterValidatorFactory::ATTRIBUTE_ACCOUNTID               = "serviceId";
32                 const std::string FolderFilterValidatorFactory::ATTRIBUTE_FOLDERPATH             = "path";
33
34                  std::string FolderFilterValidatorFactory::MATCH_EXACTLY              = "EXACTLY";
35                  std::string FolderFilterValidatorFactory::MATCH_CONTAINS             = "CONTAINS";
36                  std::string FolderFilterValidatorFactory::MATCH_STARTSWITH           = "STARTSWITH";
37                  std::string FolderFilterValidatorFactory::MATCH_ENDSWITH             = "ENDSWITH";
38 //               std::string FolderFilterValidatorFactory::MATCH_CASESENSITIVE        = "CASESENSITIVE";
39
40                 //TODO change to constant
41                 static PropertyStructArray properties =
42                 {
43                                 {"serviceId",        Api::Tizen::PrimitiveType_String},
44                                 {"path",             Api::Tizen::PrimitiveType_String},
45                                 {0,                  Api::Tizen::PrimitiveType_Notype}
46                 };
47
48                 static MatchFlagStrArray matchFlag{
49                         "EXACTLY",
50                         "CONTAINS",
51                         "STARTSWITH",
52                         "ENDSWITH",
53 //                      "MATCH_CASESENSITIVE",
54                         0
55                 };
56
57                 FolderFilterValidatorPtr FolderFilterValidatorFactory::getFolderFilterValidator()
58                 {
59                     FolderFilterValidatorPtr theInstance =
60                                 FolderFilterValidatorPtr(new FolderFilterValidator(properties, matchFlag, Api::Tizen::PrimitiveType_Int));
61
62                     return theInstance;
63                 }
64
65                 }
66         }       //naspace Platform
67 } //naspace WrtPlugins