Beta merge 2
[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                 //TODO change to constant
39                 static PropertyStructArray properties =
40                 {
41                                 {"serviceId",        Api::Tizen::PrimitiveType_String},
42                                 {"path",             Api::Tizen::PrimitiveType_String},
43                                 {0,                  Api::Tizen::PrimitiveType_NoType}
44                 };
45
46                 FolderFilterValidatorPtr FolderFilterValidatorFactory::getFolderFilterValidator()
47                 {
48                     FolderFilterValidatorPtr theInstance =
49                                 FolderFilterValidatorPtr(new FolderFilterValidator(properties));
50
51                     return theInstance;
52                 }
53
54                 }
55         }       //naspace Platform
56 } //naspace WrtPlugins