Package com.wowza.wms.authentication
Interface IAuthenticate3
-
public interface IAuthenticate3
IAuthenticate: HTTP and RTSP authentication interface
-
-
Field Summary
Fields Modifier and Type Field Description static int
PASSWORDFILEFORMAT_CLEAR
static int
PASSWORDFILEFORMAT_UNKNOWN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.wowza.wms.authentication.AuthenticationItem
getAuthenticationItem()
Return the authentication item objectString
getAuthenticationMethod()
Return the authentication method invoked - play or publishvoid
init(IApplicationInstance appInstance, com.wowza.wms.authentication.AuthenticationItem authenticationItem)
Initialize authentication class when instantiated as part of an application instancevoid
init(IVHost vhost, com.wowza.wms.authentication.AuthenticationItem authenticationItem)
Initialize authentication class when instantiated as part of a vhostvoid
setAuthenticationMethod(String method)
Set the authentication method invoked - play or publish
-
-
-
Field Detail
-
PASSWORDFILEFORMAT_UNKNOWN
static final int PASSWORDFILEFORMAT_UNKNOWN
- See Also:
- Constant Field Values
-
PASSWORDFILEFORMAT_CLEAR
static final int PASSWORDFILEFORMAT_CLEAR
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
void init(IApplicationInstance appInstance, com.wowza.wms.authentication.AuthenticationItem authenticationItem)
Initialize authentication class when instantiated as part of an application instance- Parameters:
appInstance
- application instanceauthenticationItem
- authentication item
-
init
void init(IVHost vhost, com.wowza.wms.authentication.AuthenticationItem authenticationItem)
Initialize authentication class when instantiated as part of a vhost- Parameters:
vhost
- vhostauthenticationItem
- authentication item
-
getAuthenticationItem
com.wowza.wms.authentication.AuthenticationItem getAuthenticationItem()
Return the authentication item object- Returns:
- authentication item
-
setAuthenticationMethod
void setAuthenticationMethod(String method)
Set the authentication method invoked - play or publish
-
getAuthenticationMethod
String getAuthenticationMethod()
Return the authentication method invoked - play or publish- Returns:
- authentication item
-
-