blob: 5aa5c06d24d6a85653a2bee82c1228719fb218cd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/s3/model/Redirect.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace S3
{
namespace Model
{
Redirect::Redirect() :
m_hostNameHasBeenSet(false),
m_httpRedirectCodeHasBeenSet(false),
m_protocol(Protocol::NOT_SET),
m_protocolHasBeenSet(false),
m_replaceKeyPrefixWithHasBeenSet(false),
m_replaceKeyWithHasBeenSet(false)
{
}
Redirect::Redirect(const XmlNode& xmlNode) :
m_hostNameHasBeenSet(false),
m_httpRedirectCodeHasBeenSet(false),
m_protocol(Protocol::NOT_SET),
m_protocolHasBeenSet(false),
m_replaceKeyPrefixWithHasBeenSet(false),
m_replaceKeyWithHasBeenSet(false)
{
*this = xmlNode;
}
Redirect& Redirect::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode hostNameNode = resultNode.FirstChild("HostName");
if(!hostNameNode.IsNull())
{
m_hostName = Aws::Utils::Xml::DecodeEscapedXmlText(hostNameNode.GetText());
m_hostNameHasBeenSet = true;
}
XmlNode httpRedirectCodeNode = resultNode.FirstChild("HttpRedirectCode");
if(!httpRedirectCodeNode.IsNull())
{
m_httpRedirectCode = Aws::Utils::Xml::DecodeEscapedXmlText(httpRedirectCodeNode.GetText());
m_httpRedirectCodeHasBeenSet = true;
}
XmlNode protocolNode = resultNode.FirstChild("Protocol");
if(!protocolNode.IsNull())
{
m_protocol = ProtocolMapper::GetProtocolForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(protocolNode.GetText()).c_str()).c_str());
m_protocolHasBeenSet = true;
}
XmlNode replaceKeyPrefixWithNode = resultNode.FirstChild("ReplaceKeyPrefixWith");
if(!replaceKeyPrefixWithNode.IsNull())
{
m_replaceKeyPrefixWith = Aws::Utils::Xml::DecodeEscapedXmlText(replaceKeyPrefixWithNode.GetText());
m_replaceKeyPrefixWithHasBeenSet = true;
}
XmlNode replaceKeyWithNode = resultNode.FirstChild("ReplaceKeyWith");
if(!replaceKeyWithNode.IsNull())
{
m_replaceKeyWith = Aws::Utils::Xml::DecodeEscapedXmlText(replaceKeyWithNode.GetText());
m_replaceKeyWithHasBeenSet = true;
}
}
return *this;
}
void Redirect::AddToNode(XmlNode& parentNode) const
{
Aws::StringStream ss;
if(m_hostNameHasBeenSet)
{
XmlNode hostNameNode = parentNode.CreateChildElement("HostName");
hostNameNode.SetText(m_hostName);
}
if(m_httpRedirectCodeHasBeenSet)
{
XmlNode httpRedirectCodeNode = parentNode.CreateChildElement("HttpRedirectCode");
httpRedirectCodeNode.SetText(m_httpRedirectCode);
}
if(m_protocolHasBeenSet)
{
XmlNode protocolNode = parentNode.CreateChildElement("Protocol");
protocolNode.SetText(ProtocolMapper::GetNameForProtocol(m_protocol));
}
if(m_replaceKeyPrefixWithHasBeenSet)
{
XmlNode replaceKeyPrefixWithNode = parentNode.CreateChildElement("ReplaceKeyPrefixWith");
replaceKeyPrefixWithNode.SetText(m_replaceKeyPrefixWith);
}
if(m_replaceKeyWithHasBeenSet)
{
XmlNode replaceKeyWithNode = parentNode.CreateChildElement("ReplaceKeyWith");
replaceKeyWithNode.SetText(m_replaceKeyWith);
}
}
} // namespace Model
} // namespace S3
} // namespace Aws
|