add missing enum members

This commit is contained in:
Simon Morlat 2013-12-13 11:47:23 +01:00
parent f02255ad6a
commit fc7f4002ac

View file

@ -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;