/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include using namespace Aws::Utils; namespace Aws { namespace Transfer { namespace Model { namespace ProtocolMapper { static const int SFTP_HASH = HashingUtils::HashString("SFTP"); static const int FTP_HASH = HashingUtils::HashString("FTP"); static const int FTPS_HASH = HashingUtils::HashString("FTPS"); static const int AS2_HASH = HashingUtils::HashString("AS2"); Protocol GetProtocolForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == SFTP_HASH) { return Protocol::SFTP; } else if (hashCode == FTP_HASH) { return Protocol::FTP; } else if (hashCode == FTPS_HASH) { return Protocol::FTPS; } else if (hashCode == AS2_HASH) { return Protocol::AS2; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return Protocol::NOT_SET; } Aws::String GetNameForProtocol(Protocol enumValue) { switch(enumValue) { case Protocol::SFTP: return "SFTP"; case Protocol::FTP: return "FTP"; case Protocol::FTPS: return "FTPS"; case Protocol::AS2: return "AS2"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace ProtocolMapper } // namespace Model } // namespace Transfer } // namespace Aws