class Kaltura::KalturaActivitiBusinessProcessServer

Attributes

host[RW]
password[RW]
port[RW]
protocol[RW]
username[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method
# 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
port=(val) click to toggle source
# File lib/kaltura_plugins/kaltura_activiti_business_process_notification_client_plugin.rb, line 52
def port=(val)
        @port = val.to_i
end