8#include "Arp/Base/Core/PimplPtr.hxx"
9#include "Arp/Base/Rsc/Commons/Rsc.hpp"
10#include "Arp/Base/Rsc/Commons/Services/IRscServiceFactory.hpp"
12namespace Arp::Base::Rsc::Commons::Services
35 bool IsSecure(
void)
const override;
36 String GetServiceProviderName(
void)
const override;
44 const Impl& GetImpl(
void)
const;
Adapter class to implement PImpl idiom.
Definition: PimplPtr.hxx:15
This class represents the Arp String. The implementation is based on std::string.
Definition: String.hpp:39
std::shared_ptr< IRscService > Ptr
The shared_ptr type of IRscService.
Definition: IRscService.hpp:25
This interface is used to authorize a Rsc service call.
Definition: IRscAuthorizator.hpp:21
Interface for service factory classes to create instances of the service implementation,...
Definition: IRscServiceFactory.hpp:26
std::shared_ptr< IRscServiceStub > Ptr
The shared pointer type of this type.
Definition: IRscServiceStub.hpp:21
Base class of all RSC service factories.
Definition: RscServiceFactoryBase.hpp:20
virtual IRscServiceStub::Ptr CreateServiceStub(SerializationKind kind, IRscService::Ptr pService)=0
This operation creates a service stub of various serialization kinds, e.g. SerializationKind::Rsc or ...
~RscServiceFactoryBase(void) override
The default destructor.
RscServiceFactoryBase(RscServiceFactoryBase &&arg) noexcept
The default move constructor.
virtual IRscService::Ptr CreateServiceImpl(const char *providerName, IRscAuthorizator *pAuthorizator)=0
Creates a service implementation instance.
RscServiceFactoryBase & operator=(RscServiceFactoryBase &&arg) noexcept
The default move-assignment operator.