Android Open Source - coinbase-bitmonet-sdk Bitmonet Payment Status Listener






From Project

Back to project page coinbase-bitmonet-sdk.

License

The source code is released under:

Copyright (c) 2014, BitMonet and Coinbase Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditio...

If you think the Android project coinbase-bitmonet-sdk 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.bitmonet;
//ww  w . j  av a 2  s  .  c o  m
/*
 * Implement this interface to get the status of the sendMoney calls
 */
public interface BitmonetPaymentStatusListener {
  /*
   * This function is called on successful completion of the
   * sendMoney(InBackground) api calls. Also, this is called on the same
   * thread as that of the calling activity.
   * 
   * @param hash of the transaction
   */
  public void paymentSuccess(String hash);

  /*
   * This function is called on un-successful completion of the
   * sendMoney(InBackground) api calls. Also, this is called on the same
   * thread as that of the calling activity.
   * 
   * @param error an array of error strings
   */
  public void paymentFailure(String[] error);
}




Java Source Code List

com.bitmonet.BitmonetOAuthStatusListener.java
com.bitmonet.BitmonetPaymentStatusListener.java
com.bitmonet.Bitmonet.java
com.bitmonet.Constants.java
com.bitmonet.PaymentDialog.java
com.bitmonet.TransferMoneyListener.java
com.bitmonet.coinbase.CoinbasePaymentProcessor.java
com.bitmonet.coinbase.CoinbaseWebView.java
com.bitmonet.utilities.HTTPUtils.java
com.bitmonet.utilities.JSONUtils.java
com.bitmonet.utilities.OAuthHelperUtils.java
com.bitmonet.utilities.URLUtils.java
com.bitmonet.utilities.UserProfileSettings.java
com.testapplication.MainActivity.java