ServiceTypeDescriptionRepository.hpp
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef __SUPPORT_SERVICETYPEDESCRIPTIONREPOSITORY_H
00032 #define __SUPPORT_SERVICETYPEDESCRIPTIONREPOSITORY_H
00033
00034 #include "ServiceTypeDescription.hpp"
00035
00036 #include <XmlDocument.hpp>
00037
00038 #include <map>
00039
00040
00041 namespace mermaid
00042 {
00043 namespace support
00044 {
00045 namespace service
00046 {
00047 using std::map;
00048
00049 using mermaid::support::xml::XmlDocument;
00050
00051
00052
00053
00054
00055
00056 class ServiceTypeDescriptionRepository
00057 {
00058
00059 public:
00060
00061 static shared_ptr<ServiceTypeDescriptionRepository> getInstance();
00062
00063 void addServiceTypeDescription (shared_ptr<ServiceTypeDescription> description);
00064
00065
00066
00067 shared_ptr<ServiceTypeDescription> getServiceTypeDescription (std::string serviceTypeName);
00068
00069 private:
00070 ServiceTypeDescriptionRepository();
00071
00072 std::map<std::string, shared_ptr<ServiceTypeDescription> > descriptionMap_;
00073
00074 static shared_ptr<ServiceTypeDescriptionRepository> instance_;
00075 };
00076 }
00077 }
00078 }
00079
00080 #endif // __SUPPORT_SERVICEDESCRIPTIONREPOSITORY_H