com.miserablemind.api.consumer.tradeking.connect.TradeKingConnectionFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tradeking-api-consumer Show documentation
Show all versions of tradeking-api-consumer Show documentation
Library for stock broker's Tradeking API
The newest version!
/*
* Miserable Mind
* http://www.miserablemind.com | Twitter: @lrimkus
* The MIT License (MIT)
*/
package com.miserablemind.api.consumer.tradeking.connect;
import com.miserablemind.api.consumer.tradeking.api.TradeKingOperations;
import org.springframework.social.connect.support.OAuth1ConnectionFactory;
public class TradeKingConnectionFactory extends OAuth1ConnectionFactory {
public TradeKingConnectionFactory(String consumerKey, String consumerSecret) {
super(TradeKingServiceProvider.PROVIDER_ID, new TradeKingServiceProvider(consumerKey, consumerSecret), new TradeKingApiAdapter());
}
}