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

com.sailthru.client.params.Stats Maven / Gradle / Ivy

The newest version!
package com.sailthru.client.params;

import com.sailthru.client.ApiAction;

/**
 *
 * @author Prajwal Tuladhar 
 */
public abstract class Stats implements ApiParams {
    protected String stat;

    protected static final String MODE_BLAST = "blast";
    protected static final String MODE_LIST = "list";

    public Stats(String stat) {
        this.stat = stat;
    }
    
    public ApiAction getApiCall() {
        return ApiAction.blast;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy