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

com.sailthru.client.params.job.ExportListDataJob Maven / Gradle / Ivy

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

import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;

/**
 *
 * @author Prajwal Tuladhar 
 */
public class ExportListDataJob extends Job {
    
    private static final String JOB = "export_list_data";
    
    protected String list;
    
    public ExportListDataJob() {
        this.job = JOB;
    }
    
    public ExportListDataJob setList(String list) {
        this.list = list;
        return this;
    }
    
    @Override
    public Type getType() {
        return new TypeToken() {}.getType();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy