Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f9dc299 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen
Browse files

Re-submit "Add API to get FDN available status""

This reverts commit 92c6123e.

Reason for revert: Re-submit If340115a8987deff456640cd49099a07c80ddd5c

Change-Id: Ib82f5c0bb4bab0f27a28ae9b25de7dffdfa81954
parent 92c6123e
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -128,6 +128,15 @@ public class IccCard {
        return false;
    }

    /**
     * Check whether fdn (fixed dialing number) service is available.
     * @return true if ICC fdn service available
     *         false if ICC fdn service not available
     */
    public boolean getIccFdnAvailable() {
        return false;
    }

    /**
     * Check whether ICC fdn (fixed dialing number) is enabled
     * This is a sync call which returns the cached pin enabled state
+7 −0
Original line number Diff line number Diff line
@@ -760,6 +760,13 @@ public class UiccProfile extends IccCard {
        }
    }

    @Override
    public boolean getIccFdnAvailable() {
        synchronized (mLock) {
            return mUiccApplication != null && mUiccApplication.getIccFdnAvailable();
        }
    }

    @Override
    public boolean getIccPin2Blocked() {
        /* defaults to disabled */