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