Add handling for session provider ticket

This commit is contained in:
puvvadar
2021-06-08 13:36:27 -07:00
parent 2b227a17d1
commit fa55b495c4
8 changed files with 75 additions and 25 deletions
@@ -46,7 +46,7 @@ namespace AzFramework
};
//! ISessionHandlingClientRequests
//! Requests made to the client to manage their connection to a session
//! Requests made to the client to manage their membership in a session
class ISessionHandlingClientRequests
{
public:
@@ -87,11 +87,11 @@ namespace AzFramework
// Retrieves the file location of a pem-encoded TLS certificate for Client to Server communication
// @return If successful, returns the file location of TLS certificate file; if not successful, returns
// empty string.
virtual AZStd::string GetExternalSessionCertificate() = 0;
virtual AZ::IO::Path GetExternalSessionCertificate() = 0;
// Retrieves the file location of a pem-encoded TLS certificate for Server to Server communication
// @return If successful, returns the file location of TLS certificate file; if not successful, returns
// empty string.
virtual AZStd::string GetInternalSessionCertificate() = 0;
virtual AZ::IO::Path GetInternalSessionCertificate() = 0;
};
} // namespace AzFramework