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 . jav a 2 s . c om*/ import java.util.HashMap; import java.util.Map; public class EventArguments extends ReaderMessageArguments { public Map<String,String> data; public EventArguments withEntry(String key, String value) { if (data == null) { data = new HashMap<String, String>(); } data.put(key, value); return this; } }