Class: Kaltura::KalturaUrlTokenizerAkamaiSecureHd

Inherits:
KalturaUrlTokenizer show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaUrlTokenizer

#key, #limit_ip_address, #window

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#acl_postfixObject

Returns the value of attribute acl_postfix.



15525
15526
15527
# File 'lib/kaltura_types.rb', line 15525

def acl_postfix
  @acl_postfix
end

#custom_postfixesObject

Returns the value of attribute custom_postfixes.



15526
15527
15528
# File 'lib/kaltura_types.rb', line 15526

def custom_postfixes
  @custom_postfixes
end

#param_nameObject

Returns the value of attribute param_name.



15524
15525
15526
# File 'lib/kaltura_types.rb', line 15524

def param_name
  @param_name
end

#root_dirObject

Returns the value of attribute root_dir.



15528
15529
15530
# File 'lib/kaltura_types.rb', line 15528

def root_dir
  @root_dir
end

Returns the value of attribute use_cookie_hosts.



15527
15528
15529
# File 'lib/kaltura_types.rb', line 15527

def use_cookie_hosts
  @use_cookie_hosts
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



15531
15532
15533
15534
15535
15536
15537
15538
15539
15540
15541
15542
15543
15544
15545
15546
15547
15548
# File 'lib/kaltura_types.rb', line 15531

def from_xml(xml_element)
	super
	if xml_element.elements['paramName'] != nil
		self.param_name = xml_element.elements['paramName'].text
	end
	if xml_element.elements['aclPostfix'] != nil
		self.acl_postfix = xml_element.elements['aclPostfix'].text
	end
	if xml_element.elements['customPostfixes'] != nil
		self.custom_postfixes = xml_element.elements['customPostfixes'].text
	end
	if xml_element.elements['useCookieHosts'] != nil
		self.use_cookie_hosts = xml_element.elements['useCookieHosts'].text
	end
	if xml_element.elements['rootDir'] != nil
		self.root_dir = xml_element.elements['rootDir'].text
	end
end