/*
Copyright (c) 2010, SNAIO team
All rights reserved.
*/
package edu.uta.cse.snaio.plugin.twitter;
/**
* The Class TConstants.
*
* @author Tuan Nguyen - tnguyen@mavs.uta.edu
*/
public class TConstants {
/** The Constant SLEEP_INTEVAL. */
public static final long SLEEP_INTEVAL = 1000;
/** The Constant PLUGIN_ID. */
public static final String PLUGIN_ID = "Twitter";
/** The Constant ConsumerKey. */
public static final String CONSUMER_KEY = "Ze40oOORgY0PL9ck2ik9Lg";
/** The Constant ConsumerSecret. */
public static final String CONSUMER_SECRET = "Tf4kblHnAhJxS1nYOwWOVvoqGifiGeohnlp0iVTwtE";
public static final long AUTHENTICATION_SLEEP_INTEVAL = 3000;
}
|