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 21 /** 22 * See also RIL_SimRefresh in include/telephony/ril.h 23 * 24 * {@hide} 25 */ 26 27 public class IccRefreshResponse { 28 29 public static final int REFRESH_RESULT_FILE_UPDATE = 0; /* Single file was updated */ 30 public static final int REFRESH_RESULT_INIT = 1; /* The Icc has been initialized */ 31 public static final int REFRESH_RESULT_RESET = 2; /* The Icc was reset */ 32 33 @UnsupportedAppUsage 34 public int refreshResult; /* Sim Refresh result */ 35 @UnsupportedAppUsage 36 public int efId; /* EFID */ 37 @UnsupportedAppUsage 38 public String aid; /* null terminated string, e.g., 39 from 0xA0, 0x00 -> 0x41, 40 0x30, 0x30, 0x30 */ 41 /* Example: a0000000871002f310ffff89080000ff */ 42 43 @UnsupportedAppUsage IccRefreshResponse()44 public IccRefreshResponse() { 45 } 46 47 @Override toString()48 public String toString() { 49 return "{" + refreshResult + ", " + aid +", " + efId + "}"; 50 } 51 } 52