Back to project page sodf.
The source code is released under:
Copyright (c) 2013 Lorenz Lehmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...
If you think the Android project sodf 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 lal.sodf.framework.nfc; /*from w w w . j av a 2 s. c om*/ /** * A wrapper class that can contain all the content of a SODF NFC tag * @author Lorenz Lehmann * */ public class NfcContentWrapper { /** The app identifier */ public String app; /** The payload of the tag*/ public byte[] payload; /** The compression used or null*/ public String compression; }