com.unbxd.client.feed.FeedClientFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbxd-java-sdk Show documentation
Show all versions of unbxd-java-sdk Show documentation
The project is a Unbxd Java Library
The newest version!
package com.unbxd.client.feed;
/**
* Created with IntelliJ IDEA.
* User: sourabh
* Date: 07/07/14
* Time: 7:24 PM
* To change this template use File | Settings | File Templates.
*/
public class FeedClientFactory {
public static FeedClient getFeedClient(String siteKey, String secretKey, boolean secure){
return new FeedClient(siteKey, secretKey, secure);
}
}