Commit 96c8b52a authored by hanss's avatar hanss
Browse files

CR-071 SCP(15)000264

parent 20417f57
...@@ -16,7 +16,7 @@ import uicc.hci.services.cardemulation.CardEmulationService; ...@@ -16,7 +16,7 @@ import uicc.hci.services.cardemulation.CardEmulationService;
* The method with the following header shall be compliant to its definition in the API. * The method with the following header shall be compliant to its definition in the API.
* <code>byte getType()</code> * <code>byte getType()</code>
*/ */
public class Api_1_Hme_Mty_1 extends Applet implements CardEmulationListener { public class Api_1_Hme_Mty_1 extends Applet implements MultiSelectable, CardEmulationListener {
/* /*
...@@ -121,4 +121,11 @@ public class Api_1_Hme_Mty_1 extends Applet implements CardEmulationListener { ...@@ -121,4 +121,11 @@ public class Api_1_Hme_Mty_1 extends Applet implements CardEmulationListener {
public void process(APDU arg0) throws ISOException { public void process(APDU arg0) throws ISOException {
} }
public coid deselect(boolean arg0){
}
public boolean select(boolean arg0){
return true;
}
} }
...@@ -15,7 +15,7 @@ import uicc.hci.services.connectivity.ConnectivityService; ...@@ -15,7 +15,7 @@ import uicc.hci.services.connectivity.ConnectivityService;
* The method with the following header shall be compliant to its definition in the API. * The method with the following header shall be compliant to its definition in the API.
* <code>byte getType()</code> * <code>byte getType()</code>
*/ */
public class Api_1_Hme_Mty_2 extends Applet implements ConnectivityListener { public class Api_1_Hme_Mty_2 extends Applet implements MultiSelectable, ConnectivityListener {
/* /*
...@@ -136,4 +136,11 @@ public class Api_1_Hme_Mty_2 extends Applet implements ConnectivityListener { ...@@ -136,4 +136,11 @@ public class Api_1_Hme_Mty_2 extends Applet implements ConnectivityListener {
ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED); ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
} }
} }
public coid deselect(boolean arg0){
}
public boolean select(boolean arg0){
return true;
}
} }
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment