Add new lime v2 callback

This commit is contained in:
Erwan Croze 2018-06-26 17:22:49 +02:00
parent 3c0a2eadda
commit 4f0f16b561
8 changed files with 69 additions and 2 deletions

View file

@ -1771,6 +1771,13 @@ public class LinphoneManager implements CoreListener, SensorEventListener, Accou
}
}
public void onQrcodeFound(Core lc, String something){
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

View file

@ -762,6 +762,16 @@ private static AssistantActivity instance;
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
public CountryListAdapter getCountryListAdapter() {
return countryListAdapter;
}

View file

@ -123,4 +123,14 @@ public class CreateAccountActivationFragment extends Fragment implements OnClick
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String resp) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

View file

@ -210,4 +210,14 @@ public class CreateAccountCodeActivationFragment extends Fragment implements Acc
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

View file

@ -705,4 +705,14 @@ public class CreateAccountFragment extends Fragment implements CompoundButton.On
public void onUpdateAccount(AccountCreator accountCreator, Status status, String resp) {
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

View file

@ -399,4 +399,14 @@ public class LinphoneLoginFragment extends Fragment implements CompoundButton.On
public void onUpdateAccount(AccountCreator accountCreator, AccountCreator.Status status, String resp) {
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

View file

@ -678,4 +678,14 @@ public class AccountPreferencesFragment extends PreferencesListFragment implemen
LinphoneUtils.displayErrorAlert(LinphoneUtils.errorForStatus(status), LinphoneActivity.instance());
}
}
@Override
public void onGetConfirmationKey(AccountCreator ac, AccountCreator.Status status, String key) {
}
@Override
public void onDeleteAccount(AccountCreator ac, AccountCreator.Status status, String resp) {
}
}

@ -1 +1 @@
Subproject commit b72bec13af73f03cb2e5befcfb504f4a6e9f9e31
Subproject commit d7ac8b620e13fd0c7468fe0a2e6ebbfb3e4651d2