mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-22 13:48:09 +00:00
add missing enum members
This commit is contained in:
parent
f02255ad6a
commit
fc7f4002ac
1 changed files with 9 additions and 1 deletions
|
|
@ -48,7 +48,15 @@ public class Reason {
|
|||
* Operation not authorized because no credentials found
|
||||
* */
|
||||
static public Reason Unauthorized = new Reason(10,"Unauthorized");
|
||||
|
||||
/**
|
||||
* Operation was rejected by remote, for example a LinphoneCore.updateCall()
|
||||
*/
|
||||
static public Reason NotAcceptable = new Reason(11,"NotAcceptable");
|
||||
/**
|
||||
* Operation was rejected by remote due to request unmatched to any context.
|
||||
*/
|
||||
static public Reason NoMatch = new Reason(12,"NoMatch");
|
||||
|
||||
protected final int mValue;
|
||||
private final String mStringValue;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue