Class: Kaltura::KalturaActivitiBusinessProcessServer
- Inherits:
-
KalturaBusinessProcessServer
- Object
- KalturaObjectBase
- KalturaBusinessProcessServer
- Kaltura::KalturaActivitiBusinessProcessServer
- Defined in:
- lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb
Instance Attribute Summary collapse
-
#host ⇒ Object
Returns the value of attribute host.
-
#password ⇒ Object
Returns the value of attribute password.
-
#port ⇒ Object
Returns the value of attribute port.
-
#protocol ⇒ Object
Returns the value of attribute protocol.
-
#username ⇒ Object
Returns the value of attribute username.
Attributes inherited from KalturaBusinessProcessServer
#created_at, #dc, #description, #id, #name, #partner_id, #status, #system_name, #type, #updated_at
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#host ⇒ Object
Returns the value of attribute host.
46 47 48 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 46 def host @host end |
#password ⇒ Object
Returns the value of attribute password.
50 51 52 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 50 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
47 48 49 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 47 def port @port end |
#protocol ⇒ Object
Returns the value of attribute protocol.
48 49 50 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 48 def protocol @protocol end |
#username ⇒ Object
Returns the value of attribute username.
49 50 51 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 49 def username @username end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb', line 56 def from_xml(xml_element) super if xml_element.elements['host'] != nil self.host = xml_element.elements['host'].text end if xml_element.elements['port'] != nil self.port = xml_element.elements['port'].text end if xml_element.elements['protocol'] != nil self.protocol = xml_element.elements['protocol'].text end if xml_element.elements['username'] != nil self.username = xml_element.elements['username'].text end if xml_element.elements['password'] != nil self.password = xml_element.elements['password'].text end end |