Android Open Source - BlockchainWidget Blockchain Response






From Project

Back to project page BlockchainWidget.

License

The source code is released under:

The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and nei...

If you think the Android project BlockchainWidget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.rbonestell.bcwidget.utils;
//  w ww.  j a  va  2s.  co  m
import java.io.Serializable;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

@JsonIgnoreProperties(ignoreUnknown=true)
public class BlockchainResponse implements Serializable
{
  private static final long serialVersionUID = -5196363532275776169L;
  public int time;
  public int height;
}




Java Source Code List

com.rbonestell.bcwidget.BlockchainWidget.java
com.rbonestell.bcwidget.SelectFrequencyActivity.java
com.rbonestell.bcwidget.utils.BlockchainRequest.java
com.rbonestell.bcwidget.utils.BlockchainResponse.java
com.rbonestell.bcwidget.utils.WSClient.java