Merge "Adding method to get disconnect cause from conference" into lmp-mr1-dev
This commit is contained in:
@@ -28104,6 +28104,7 @@ package android.telecom {
|
|||||||
method public final int getCapabilities();
|
method public final int getCapabilities();
|
||||||
method public final java.util.List<android.telecom.Connection> getConferenceableConnections();
|
method public final java.util.List<android.telecom.Connection> getConferenceableConnections();
|
||||||
method public final java.util.List<android.telecom.Connection> getConnections();
|
method public final java.util.List<android.telecom.Connection> getConnections();
|
||||||
|
method public final android.telecom.DisconnectCause getDisconnectCause();
|
||||||
method public final android.telecom.PhoneAccountHandle getPhoneAccountHandle();
|
method public final android.telecom.PhoneAccountHandle getPhoneAccountHandle();
|
||||||
method public android.telecom.Connection getPrimaryConnection();
|
method public android.telecom.Connection getPrimaryConnection();
|
||||||
method public final int getState();
|
method public final int getState();
|
||||||
|
|||||||
@@ -206,6 +206,13 @@ public abstract class Conference {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return The {@link DisconnectCause} for this connection.
|
||||||
|
*/
|
||||||
|
public final DisconnectCause getDisconnectCause() {
|
||||||
|
return mDisconnectCause;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the capabilities of a conference. See {@link PhoneCapabilities} for valid values.
|
* Sets the capabilities of a conference. See {@link PhoneCapabilities} for valid values.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user