Class: Aws::S3Interface::S3AclParser
- Defined in:
- lib/s3/s3_interface.rb
Overview
:nodoc:
Constant Summary
Constants inherited from AwsParser
AwsParser::DEFAULT_XML_LIBRARY
Instance Attribute Summary
Attributes inherited from AwsParser
Instance Method Summary collapse
Methods inherited from AwsParser
#initialize, #method_missing, #parse, #tag_end, #tag_start, #tagtext, #text, xml_lib, xml_lib=
Constructor Details
This class inherits a constructor from Aws::AwsParser
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Aws::AwsParser
Instance Method Details
#reset ⇒ Object
1166 1167 1168 1169 |
# File 'lib/s3/s3_interface.rb', line 1166 def reset @result = {:grantees=>[], :owner=>{}} @current_grantee = {} end |
#tagend(name) ⇒ Object
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 |
# File 'lib/s3/s3_interface.rb', line 1175 def tagend(name) case name # service info when 'ID' if @xmlpath == 'AccessControlPolicy/Owner' @result[:owner][:id] = @text else @current_grantee[:id] = @text end when 'DisplayName' if @xmlpath == 'AccessControlPolicy/Owner' @result[:owner][:display_name] = @text else @current_grantee[:display_name] = @text end when 'URI' @current_grantee[:uri] = @text when 'Permission' @current_grantee[:permissions] = @text when 'Grant' @result[:grantees] << @current_grantee end end |
#tagstart(name, attributes) ⇒ Object
1171 1172 1173 |
# File 'lib/s3/s3_interface.rb', line 1171 def (name, attributes) @current_grantee = {:attributes => attributes} if name=='Grantee' end |