All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.social.evernote.connect.EvernoteYinXiangConnectionFactory Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package org.springframework.social.evernote.connect;

import com.evernote.auth.EvernoteService;

/**
 * @author Tadaya Tsuyukubo
 */
public class EvernoteYinXiangConnectionFactory extends EvernoteConnectionFactory {

	public EvernoteYinXiangConnectionFactory(String consumerKey, String consumerSecret) {
		this(consumerKey, consumerSecret, EvernoteService.YINXIANG);
	}

	public EvernoteYinXiangConnectionFactory(String consumerKey, String consumerSecret, EvernoteService evernoteService) {
		super(consumerKey, consumerSecret, evernoteService, "evernote-yinxiang");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy