public class UiccAPITestCardService implements UiccCardManagementService,UiccAdministrativeCommandsService,UiccApplicationManagementService,UiccToolkitService {
public static UiccAPITestCardService TestReference = null;
/**
* static method to get a reference to UiccAPITestCardService
* @returns reference to the UiccAPITestCardService implementation class
*/
public static UiccAPITestCardService getTheUiccTestCardService() {
if (TestReference == null) {
return new UiccAPITestCardService();
}
else {
return TestReference;
}
}
@Override
public String reset() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectFile(String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectFile(String LogicalChannel, String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectForActivation(String DFname) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectForActivation(String LogicalChannel, String DFname) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectForTermination(String DFname) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse selectForTermination(String LogicalChannel, String DFname) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse activate(String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse activate(String LogicalChannel, String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse deactivate(String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse deactivate(String LogicalChannel, String FileId) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse manageChannel(String OperationCode, String ChannelNb) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse manageChannel(String LogicalChannel, String OperationCode, String ChannelNb) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public APDUResponse status(String AppStatus, String ReturnedData, String DataLength) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.