Class GetStreamSettings.Settings
- java.lang.Object
-
- nl.harm27.obs.websocket.api.requests.streaming.GetStreamSettings.Settings
-
- Enclosing class:
- GetStreamSettings
public class GetStreamSettings.Settings extends Object
-
-
Constructor Summary
Constructors Constructor Description Settings()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()The publish key of the stream.StringgetPassword()The password to use when accessing the streaming server.StringgetServer()The publish URL.StringgetUsername()The username to use when accessing the streaming server.booleanisUseAuth()Indicates whether authentication should be used when connecting to the streaming server.
-
-
-
Method Detail
-
getServer
public String getServer()
The publish URL.
-
getKey
public String getKey()
The publish key of the stream.
-
isUseAuth
public boolean isUseAuth()
Indicates whether authentication should be used when connecting to the streaming server.
-
getUsername
public String getUsername()
The username to use when accessing the streaming server. Only present if `use_auth` is `true`.
-
getPassword
public String getPassword()
The password to use when accessing the streaming server. Only present if `use_auth` is `true`.
-
-