Package com.wowza.wms.sourcecontrol
Interface ISourceControlSession
-
public interface ISourceControlSession
Public interface for a Source Control device session
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IApplicationInstance
getApplicationInstance()
Get the IApplicationInstance associated with this sessionISourceControl
getSourceControlImpl()
Get the underlying ISourceControl implementationString
getStreamName()
Get the stream name associated with this sessionvoid
setApplicationInstance(IApplicationInstance appInstance)
Set the IApplicationInstance associated wit this sessionvoid
setSrouceControlImpl(ISourceControl sourceControlImpl)
Set the underlying ISourceControl Implementationvoid
setStreamName(String streamName)
Set the stream name associated with this session
-
-
-
Method Detail
-
getSourceControlImpl
ISourceControl getSourceControlImpl()
Get the underlying ISourceControl implementation- Returns:
- ISourceControl implementation
-
setSrouceControlImpl
void setSrouceControlImpl(ISourceControl sourceControlImpl)
Set the underlying ISourceControl Implementation- Parameters:
sourceControlImpl
- implementation
-
getApplicationInstance
IApplicationInstance getApplicationInstance()
Get the IApplicationInstance associated with this session- Returns:
- IApplicationInstance associated with this session
-
setApplicationInstance
void setApplicationInstance(IApplicationInstance appInstance)
Set the IApplicationInstance associated wit this session- Parameters:
appInstance
- IApplicationInstance to associate with this session
-
getStreamName
String getStreamName()
Get the stream name associated with this session- Returns:
- String containing the stream name
-
setStreamName
void setStreamName(String streamName)
Set the stream name associated with this session- Parameters:
streamName
- A String containing the stream name to associate with this session
-
-