Back to project page irma_android_cardproxy.
The source code is released under:
GNU General Public License
If you think the Android project irma_android_cardproxy listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.irmacard.androidcardproxy.messages; /*from w w w . j av a2s .c o m*/ import net.sourceforge.scuba.smartcards.ProtocolResponses; public class ResponseArguments extends ReaderMessageArguments { public String result = null; public ProtocolResponses responses = null; public ResponseArguments(ProtocolResponses responses) { this.responses = responses; } public ResponseArguments(String result) { this.result = result; } }