Class: Kaltura::KalturaUrlTokenizerAkamaiSecureHd
- Inherits:
-
KalturaUrlTokenizer
- Object
- KalturaObjectBase
- KalturaUrlTokenizer
- Kaltura::KalturaUrlTokenizerAkamaiSecureHd
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#acl_postfix ⇒ Object
Returns the value of attribute acl_postfix.
-
#custom_postfixes ⇒ Object
Returns the value of attribute custom_postfixes.
-
#param_name ⇒ Object
Returns the value of attribute param_name.
-
#root_dir ⇒ Object
Returns the value of attribute root_dir.
-
#use_cookie_hosts ⇒ Object
Returns the value of attribute use_cookie_hosts.
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
Instance Attribute Details
#acl_postfix ⇒ Object
Returns the value of attribute acl_postfix.
15056 15057 15058 |
# File 'lib/kaltura_types.rb', line 15056 def acl_postfix @acl_postfix end |
#custom_postfixes ⇒ Object
Returns the value of attribute custom_postfixes.
15057 15058 15059 |
# File 'lib/kaltura_types.rb', line 15057 def custom_postfixes @custom_postfixes end |
#param_name ⇒ Object
Returns the value of attribute param_name.
15055 15056 15057 |
# File 'lib/kaltura_types.rb', line 15055 def param_name @param_name end |
#root_dir ⇒ Object
Returns the value of attribute root_dir.
15059 15060 15061 |
# File 'lib/kaltura_types.rb', line 15059 def root_dir @root_dir end |
#use_cookie_hosts ⇒ Object
Returns the value of attribute use_cookie_hosts.
15058 15059 15060 |
# File 'lib/kaltura_types.rb', line 15058 def @use_cookie_hosts end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 |
# File 'lib/kaltura_types.rb', line 15062 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. = xml_element.elements['useCookieHosts'].text end if xml_element.elements['rootDir'] != nil self.root_dir = xml_element.elements['rootDir'].text end end |