public interface ConferenceParams
Conference. Core.createConferenceParams(org.linphone.core.Conference). | Modifier and Type | Method | Description |
|---|---|---|
ConferenceParams |
clone() |
Clone a
ConferenceParams. |
Account |
getAccount() |
Returns the account for the conference.
|
Address |
getConferenceFactoryAddress() |
Get the conference factory address of the conference that has been set.
|
java.lang.String |
getDescription() |
Get conference description.
|
long |
getEndTime() |
Get the end time of the conference.
|
long |
getNativePointer() |
Gets the native pointer used by this class to make native method calls.
|
ConferenceParticipantListType |
getParticipantListType() |
Get the participant list type.
|
ProxyConfig |
getProxyCfg() |
Deprecated.
11/01/2022 Use
getAccount() instead. |
long |
getStartTime() |
Get the start time of the conference.
|
java.lang.String |
getSubject() |
Get conference subject.
|
java.lang.Object |
getUserData() |
Gets the object stored in this object user's data
|
boolean |
isAudioEnabled() |
Check whether audio capabilities are enabled.
|
boolean |
isChatEnabled() |
Check whether chat capabilities are enabled.
|
boolean |
isLocalParticipantEnabled() |
Returns whether local participant has to enter the conference.
|
boolean |
isOneParticipantConferenceEnabled() |
Returns whether conference can have only one participant.
|
boolean |
isVideoEnabled() |
Check whether video capabilities are enabled.
|
void |
setAudioEnabled(boolean enable) |
Enable audio capabilities.
|
void |
setChatEnabled(boolean enable) |
Enable chat capabilities.
|
void |
setConferenceFactoryAddress(Address address) |
Set the conference factory address of the conference.
|
void |
setDescription(java.lang.String description) |
Set the description of the conference.
|
void |
setEndTime(long end) |
Set the conference end time.
|
void |
setLocalParticipantEnabled(boolean enable) |
Enable local participant to enter the conference.
|
void |
setOneParticipantConferenceEnabled(boolean enable) |
Enable conference with one participant.
|
void |
setParticipantListType(ConferenceParticipantListType type) |
Set the participant list type.
|
void |
setStartTime(long start) |
Set the conference start time.
|
void |
setSubject(java.lang.String subject) |
Set the subject of the conference.
|
void |
setUserData(java.lang.Object data) |
Sets the object to store in this object user's data
|
void |
setVideoEnabled(boolean enable) |
Enable video capabilities.
|
java.lang.String |
toString() |
@Nullable Account getAccount()
boolean isAudioEnabled()
void setAudioEnabled(boolean enable)
enable - If true, audio will be enabled during conference boolean isChatEnabled()
void setChatEnabled(boolean enable)
enable - If true, chat is enabled during conference @Nullable Address getConferenceFactoryAddress()
void setConferenceFactoryAddress(@Nullable
Address address)
address - the conference factory address. @Nullable java.lang.String getDescription()
void setDescription(@Nullable
java.lang.String description)
description - the conference description. long getEndTime()
void setEndTime(long end)
end - the conference end time as the number of seconds between the desiredboolean isLocalParticipantEnabled()
void setLocalParticipantEnabled(boolean enable)
Core. It uses theenable - true if local participant is automatically added to theboolean isOneParticipantConferenceEnabled()
void setOneParticipantConferenceEnabled(boolean enable)
enable - true if conference can have only one participant, false otherwise ConferenceParticipantListType getParticipantListType()
ConferenceParticipantListType. void setParticipantListType(ConferenceParticipantListType type)
type - Participant list type ConferenceParticipantListType. This@Deprecated @Nullable ProxyConfig getProxyCfg()
getAccount() instead. long getStartTime()
void setStartTime(long start)
start - the conference start time as the number of seconds between the@Nullable java.lang.String getSubject()
void setSubject(@Nullable
java.lang.String subject)
subject - the conference subject. boolean isVideoEnabled()
void setVideoEnabled(boolean enable)
enable - If true, video will be enabled during conference @NonNull ConferenceParams clone()
ConferenceParams with the same parameters thanvoid setUserData(java.lang.Object data)
data - the object to storejava.lang.Object getUserData()
long getNativePointer()
java.lang.String toString()
toString in class java.lang.Object