Commit 96c8b52a authored by Sebastian Hans's avatar Sebastian Hans
Browse files

CR-071 SCP(15)000264

parent 20417f57
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -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.
 * <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 {
	public void process(APDU arg0) throws ISOException {

	}
	
	public coid deselect(boolean arg0){
	}
	
	public boolean select(boolean arg0){
		return true;
	}
}
+8 −1
Original line number Diff line number Diff line
@@ -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.
 * <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 {
			ISOException.throwIt(ISO7816.SW_INS_NOT_SUPPORTED);
		}
	}
	
	public coid deselect(boolean arg0){
	}
	
	public boolean select(boolean arg0){
		return true;
	}
}