mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-07 05:53:06 +00:00
Added 2 new state for chat message in java object
This commit is contained in:
parent
0a88099a5a
commit
c5d232691a
1 changed files with 8 additions and 0 deletions
|
|
@ -66,6 +66,14 @@ public interface LinphoneChatMessage {
|
|||
* File transfer has been completed successfully.
|
||||
*/
|
||||
public final static State FileTransferDone = new State(5,"FileTransferDone");
|
||||
/**
|
||||
* Message successfully delivered and acknowledged to destination
|
||||
*/
|
||||
public final static State DeliveredToUser = new State(6,"DeliveredToUser");
|
||||
/**
|
||||
* Message displayed to the remote user
|
||||
*/
|
||||
public final static State Displayed = new State(7,"Displayed");
|
||||
|
||||
private State(int value,String stringValue) {
|
||||
mValue = value;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue