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 ww w . j a v a 2 s . com*/ public class PinResultArguments extends ResponseArguments { public int tries; public boolean success; public PinResultArguments(int tries) { super((tries == -1) ? "success" : "failure"); success = tries == -1; this.tries = tries; } }