Class: Kiji::Client
Instance Attribute Summary collapse
-
#access_key ⇒ Object
Returns the value of attribute access_key.
-
#api_end_point ⇒ Object
Returns the value of attribute api_end_point.
-
#basic_auth_id ⇒ Object
Returns the value of attribute basic_auth_id.
-
#basic_auth_password ⇒ Object
Returns the value of attribute basic_auth_password.
-
#cert ⇒ Object
Returns the value of attribute cert.
-
#private_key ⇒ Object
Returns the value of attribute private_key.
-
#software_id ⇒ Object
Returns the value of attribute software_id.
Instance Method Summary collapse
-
#initialize {|_self| ... } ⇒ Client
constructor
A new instance of Client.
Methods included from Access
#amendapply, #amends, #apply, #arrived_applications, #banks, #comment, #done_comment, #done_officialdocument, #notices, #officialdocument, #partamend, #payments, #reamend, #reference, #sended_applications_by_date, #sended_applications_by_id, #verify_officialdocument, #withdraw
Methods included from Authentication
#append_certificate, #delete_certificate, #login, #register, #update_certificate
Constructor Details
#initialize {|_self| ... } ⇒ Client
Returns a new instance of Client.
12 13 14 15 16 17 18 19 |
# File 'lib/kiji/client.rb', line 12 def initialize @software_id = software_id @api_end_point = api_end_point @basic_auth_id = basic_auth_id @basic_auth_password = basic_auth_password yield(self) if block_given? end |
Instance Attribute Details
#access_key ⇒ Object
Returns the value of attribute access_key.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def access_key @access_key end |
#api_end_point ⇒ Object
Returns the value of attribute api_end_point.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def api_end_point @api_end_point end |
#basic_auth_id ⇒ Object
Returns the value of attribute basic_auth_id.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def basic_auth_id @basic_auth_id end |
#basic_auth_password ⇒ Object
Returns the value of attribute basic_auth_password.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def basic_auth_password @basic_auth_password end |
#cert ⇒ Object
Returns the value of attribute cert.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def cert @cert end |
#private_key ⇒ Object
Returns the value of attribute private_key.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def private_key @private_key end |
#software_id ⇒ Object
Returns the value of attribute software_id.
8 9 10 |
# File 'lib/kiji/client.rb', line 8 def software_id @software_id end |