Class: FusionAuth::JSONBodyHandler

Inherits:
Object
  • Object
show all
Defined in:
lib/fusionauth/rest_client.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#bodyObject

Returns the value of attribute body.



293
294
295
# File 'lib/fusionauth/rest_client.rb', line 293

def body
  @body
end

#lengthObject

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_objectString

Returns the body String for the request

Returns:

  • (String)

    The body as a String



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.

Parameters:

  • headers (Hash)

    The headers hash to add any headers needed by this BodyHandler

Returns:

  • (Object)

    The object



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