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

Commit 2b27728f authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Telephony: Add AIDL interface for SMSC function"

parents bebb17b6 f010a30b
Loading
Loading
Loading
Loading
+17 −0
Original line number Diff line number Diff line
@@ -727,4 +727,21 @@ interface ISms {
     * @return capacity of ICC
     */
    int getSmsCapacityOnIccForSubscriber(long subId);

    /**
     * Get the SMSC from Icc card.
     *
     * @param subId for subId which getSmscAddressFromIccForSubscriber is queried.
     * @return SMSC of ICC
     */
    String getSmscAddressFromIccForSubscriber(long subId);

    /**
     * Set the SMSC to Icc card.
     *
     * @param subId for subId which setSmscAddressToIccForSubscriber is queried.
     * @param scAddress is the service center address
     * @return true if SMSC is set successfully, false otherwise
     */
    boolean setSmscAddressToIccForSubscriber(long subId, String scAdress);
}