Class: Kaltura::KalturaActivitiBusinessProcessServer

Inherits:
KalturaBusinessProcessServer show all
Defined in:
lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#hostObject

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

#passwordObject

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

#portObject

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

#protocolObject

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

#usernameObject

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