Package com.wowza.wms.vhost
Class StreamItem
- Object
-
- com.wowza.wms.vhost.StreamItem
-
public class StreamItem extends Object
StreamItem: data object that defines a streamType.
-
-
Constructor Summary
Constructors Constructor Description StreamItem(String name, String baseClass, String playClass)
Create a new streamItem
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clearProperty(String name)
Clear property.String
getBaseClass()
Get base class path.String
getDescription()
Get streamType description.String
getName()
Get streamType name.String
getPlayClass()
Get play class path.WMSProperties
getProperties()
Get properties.String
getProperty(String name)
Get property by name.void
setBaseClass(String baseClass)
Set base class path.void
setDescription(String description)
Set streamType description.void
setName(String name)
Set streamType name.void
setPlayClass(String playClass)
Set play class path.void
setProperty(String name, String value)
Set property value.String
toString()
-
-
-
Method Detail
-
getBaseClass
public String getBaseClass()
Get base class path.- Returns:
- base clas path
-
setBaseClass
public void setBaseClass(String baseClass)
Set base class path.- Parameters:
baseClass
- base class path
-
getName
public String getName()
Get streamType name.- Returns:
- streamType name
-
setName
public void setName(String name)
Set streamType name.- Parameters:
name
- streamType name
-
getPlayClass
public String getPlayClass()
Get play class path.- Returns:
- play class path
-
setPlayClass
public void setPlayClass(String playClass)
Set play class path.- Parameters:
playClass
- play class path
-
setProperty
public void setProperty(String name, String value)
Set property value.- Parameters:
name
- property namevalue
- property value
-
clearProperty
public void clearProperty(String name)
Clear property.- Parameters:
name
- property name
-
getProperty
public String getProperty(String name)
Get property by name.- Parameters:
name
- property name- Returns:
- property value
-
getProperties
public WMSProperties getProperties()
Get properties.- Returns:
- properties
-
getDescription
public String getDescription()
Get streamType description.- Returns:
- streamType description
-
setDescription
public void setDescription(String description)
Set streamType description.- Parameters:
description
- streamType description
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-