Class: Kaltura::KalturaUrlRecognizer
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaUrlRecognizer
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#hosts ⇒ Object
The hosts that are recognized.
-
#uri_prefix ⇒ Object
The URI prefix we use for security.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#hosts ⇒ Object
The hosts that are recognized
3560 3561 3562 |
# File 'lib/kaltura_types.rb', line 3560 def hosts @hosts end |
#uri_prefix ⇒ Object
The URI prefix we use for security
3562 3563 3564 |
# File 'lib/kaltura_types.rb', line 3562 def uri_prefix @uri_prefix end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3565 3566 3567 3568 3569 3570 3571 3572 3573 |
# File 'lib/kaltura_types.rb', line 3565 def from_xml(xml_element) super if xml_element.elements['hosts'] != nil self.hosts = xml_element.elements['hosts'].text end if xml_element.elements['uriPrefix'] != nil self.uri_prefix = xml_element.elements['uriPrefix'].text end end |