Class: FusionAuth::JSONBodyHandler
- Inherits:
-
Object
- Object
- FusionAuth::JSONBodyHandler
- Defined in:
- lib/fusionauth/rest_client.rb
Instance Attribute Summary collapse
-
#body ⇒ Object
Returns the value of attribute body.
-
#length ⇒ Object
Returns the value of attribute length.
Instance Method Summary collapse
-
#body_object ⇒ String
Returns the body String for the request.
-
#initialize(body_object) ⇒ JSONBodyHandler
constructor
A new instance of JSONBodyHandler.
-
#set_headers(headers) ⇒ Object
Sets any headers necessary for the body to be processed.
Constructor Details
#initialize(body_object) ⇒ JSONBodyHandler
Returns a new instance of JSONBodyHandler.
295 296 297 |
# File 'lib/fusionauth/rest_client.rb', line 295 def initialize(body_object) @body = JSON.generate(body_object) end |
Instance Attribute Details
#body ⇒ Object
Returns the value of attribute body.
293 294 295 |
# File 'lib/fusionauth/rest_client.rb', line 293 def body @body end |
#length ⇒ Object
Returns the value of attribute length.
293 294 295 |
# File 'lib/fusionauth/rest_client.rb', line 293 def length @length end |
Instance Method Details
#body_object ⇒ String
Returns the body String for the request
303 304 305 |
# File 'lib/fusionauth/rest_client.rb', line 303 def body_object @body end |
#set_headers(headers) ⇒ Object
Sets any headers necessary for the body to be processed.
312 313 314 315 316 |
# File 'lib/fusionauth/rest_client.rb', line 312 def set_headers(headers) headers['Length'] = body.bytesize.to_s headers['Content-Type'] = 'application/json' nil end |