ServiceErrorReply.cpp
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 #include "config.h"
00031
00032 #include "ServiceErrorReply.hpp"
00033
00034 #include "EntityDescriptionRepository.hpp"
00035 #include "ServiceTypeDescription.hpp"
00036 #include "ServiceInterfaceDescription.hpp"
00037 #include "ServiceInstanceDescription.hpp"
00038
00039
00040 #include <DataFactory.hpp>
00041 #include <Exception.hpp>
00042 #include <Service.hpp>
00043
00044
00045 using namespace mermaid::support::service;
00046
00047 using mermaid::support::data::DataFactory;
00048 using mermaid::support::errorhandling::Exception;
00049
00050 ServiceErrorReply::ServiceErrorReply (std::string requesterEntityName, std::string requesterServiceName, std::string targetEntityName, std::string targetServiceName, std::string targetServiceInterfaceName, int requestId, std::string executionStatus)
00051 {
00052 requesterServiceName_ = requesterServiceName;
00053 requesterEntityName_ = requesterEntityName;
00054 requesterServiceName_ = requesterServiceName;
00055 targetEntityName_ = targetEntityName;
00056 targetServiceName_ = targetServiceName;
00057 targetServiceInterfaceName_ = targetServiceInterfaceName;
00058 requestId_ = requestId;
00059 executionStatus_ = executionStatus;
00060 };
00061