/** * 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 DirectoryService { namespace Model { namespace TrustDirectionMapper { static const int One_Way_Outgoing_HASH = HashingUtils::HashString("One-Way: Outgoing"); static const int One_Way_Incoming_HASH = HashingUtils::HashString("One-Way: Incoming"); static const int Two_Way_HASH = HashingUtils::HashString("Two-Way"); TrustDirection GetTrustDirectionForName(const Aws::String& name) { int hashCode = HashingUtils::HashString(name.c_str()); if (hashCode == One_Way_Outgoing_HASH) { return TrustDirection::One_Way_Outgoing; } else if (hashCode == One_Way_Incoming_HASH) { return TrustDirection::One_Way_Incoming; } else if (hashCode == Two_Way_HASH) { return TrustDirection::Two_Way; } EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { overflowContainer->StoreOverflow(hashCode, name); return static_cast(hashCode); } return TrustDirection::NOT_SET; } Aws::String GetNameForTrustDirection(TrustDirection enumValue) { switch(enumValue) { case TrustDirection::One_Way_Outgoing: return "One-Way: Outgoing"; case TrustDirection::One_Way_Incoming: return "One-Way: Incoming"; case TrustDirection::Two_Way: return "Two-Way"; default: EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer(); if(overflowContainer) { return overflowContainer->RetrieveOverflow(static_cast(enumValue)); } return {}; } } } // namespace TrustDirectionMapper } // namespace Model } // namespace DirectoryService } // namespace Aws