ffead.server.doc
ConfigurationData.h
1 /*
2  Copyright 2009-2012, Sumeet Chhetri
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  * ConfiguartionData.h
18  *
19  * Created on: 19-Jun-2012
20  * Author: sumeetc
21  */
22 
23 #ifndef CONFIGURATIONDATA_H_
24 #define CONFIGURATIONDATA_H_
25 #include "string"
26 #include "ControllerHandler.h"
27 #include "PropFileReader.h"
28 #include "SecurityHandler.h"
29 #include "WsUtil.h"
30 using namespace std;
31 
33 public:
34  string key_file,dh_file,ca_list,rand_file,sec_password,srv_auth_prvd,srv_auth_mode,srv_auth_file,ip_address,resourcePath;
35  int client_auth;
36  map<string, vector<string> > filterMap;
37  resFuncMap rstCntMap;
38  map<string, string> handoffs;
39  map<string, Security> securityObjectMap;
40  map<string, Element> formMap;
41  strVec dcpsss,cmpnames,tpes;
42  propMap props,lprops,urlpattMap,urlMap,tmplMap,vwMap,appMap,cntMap,pubMap,mapMap,mappattMap,autMap,autpattMap,wsdlmap,fviewmap,ajaxIntfMap;
43  long sessionTimeout;
44  bool sessatserv;
46  virtual ~ConfigurationData();
47 };
48 
49 #endif /* CONFIGURATIONDATA_H_ */