Package com.xeiam.xchange.examples.mintpal

Source Code of com.xeiam.xchange.examples.mintpal.MintPalDemoUtils

package com.xeiam.xchange.examples.mintpal;

import com.xeiam.xchange.Exchange;
import com.xeiam.xchange.ExchangeFactory;
import com.xeiam.xchange.ExchangeSpecification;
import com.xeiam.xchange.mintpal.MintPalExchange;

/**
* @author jamespedwards42
*/
public class MintPalDemoUtils {

  public static Exchange createExchange() {

    ExchangeSpecification exSpec = new ExchangeSpecification(MintPalExchange.class);

    return ExchangeFactory.INSTANCE.createExchange(exSpec);
  }
}
TOP

Related Classes of com.xeiam.xchange.examples.mintpal.MintPalDemoUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.