1 /* 2 * Copyright (C) 2011 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.internal.telephony.uicc; 18 19 import android.compat.annotation.UnsupportedAppUsage; 20 import android.os.Build; 21 22 /** 23 * See also RIL_SimRefresh in include/telephony/ril.h 24 * 25 * {@hide} 26 */ 27 28 public class IccRefreshResponse { 29 30 public static final int REFRESH_RESULT_FILE_UPDATE = 0; /* Single file was updated */ 31 public static final int REFRESH_RESULT_INIT = 1; /* The Icc has been initialized */ 32 public static final int REFRESH_RESULT_RESET = 2; /* The Icc was reset */ 33 34 @UnsupportedAppUsage 35 public int refreshResult; /* Sim Refresh result */ 36 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) 37 public int efId; /* EFID */ 38 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) 39 public String aid; /* null terminated string, e.g., 40 from 0xA0, 0x00 -> 0x41, 41 0x30, 0x30, 0x30 */ 42 /* Example: a0000000871002f310ffff89080000ff */ 43 @UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.R, trackingBug = 170729553) IccRefreshResponse()44 public IccRefreshResponse() { 45 } 46 47 @Override toString()48 public String toString() { 49 return "{" + refreshResult + ", " + aid +", " + efId + "}"; 50 } 51 } 52