Package com.wowza.wms.authentication
Class AuthenticateUsernamePasswordProviderBase
- Object
-
- com.wowza.wms.authentication.AuthenticateUsernamePasswordProviderBase
-
- All Implemented Interfaces:
IAuthenticateUsernamePasswordProvider
public abstract class AuthenticateUsernamePasswordProviderBase extends Object implements IAuthenticateUsernamePasswordProvider
Base class for implementing HTTP and RTSP based custom authentication class.
-
-
Field Summary
Fields Modifier and Type Field Description protected IClient
client
protected RTPSession
rtpSession
protected IVHost
vhost
-
Constructor Summary
Constructors Constructor Description AuthenticateUsernamePasswordProviderBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IClient
getClient()
Get clientRTPSession
getRTPSession()
Get RTP SessionIVHost
getVHost()
Get vhostvoid
setClient(IClient client)
Set clientvoid
setRTPSession(RTPSession rtpSession)
Set RTP Sessionvoid
setVHost(IVHost vhost)
Set vhost-
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.wowza.wms.authentication.IAuthenticateUsernamePasswordProvider
getPassword, getPasswordEncoding, userExists
-
-
-
-
Field Detail
-
vhost
protected IVHost vhost
-
client
protected IClient client
-
rtpSession
protected RTPSession rtpSession
-
-
Method Detail
-
getVHost
public IVHost getVHost()
Get vhost- Specified by:
getVHost
in interfaceIAuthenticateUsernamePasswordProvider
- Returns:
- vhost
-
setVHost
public void setVHost(IVHost vhost)
Set vhost- Specified by:
setVHost
in interfaceIAuthenticateUsernamePasswordProvider
- Parameters:
vhost
- vhost
-
getRTPSession
public RTPSession getRTPSession()
Get RTP Session- Specified by:
getRTPSession
in interfaceIAuthenticateUsernamePasswordProvider
- Returns:
- RTP Session
-
setRTPSession
public void setRTPSession(RTPSession rtpSession)
Set RTP Session- Specified by:
setRTPSession
in interfaceIAuthenticateUsernamePasswordProvider
- Parameters:
rtpSession
- RTP Session
-
getClient
public IClient getClient()
Get client- Specified by:
getClient
in interfaceIAuthenticateUsernamePasswordProvider
- Returns:
- client
-
setClient
public void setClient(IClient client)
Set client- Specified by:
setClient
in interfaceIAuthenticateUsernamePasswordProvider
- Parameters:
client
- client
-
-