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

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

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

import com.google.gson.reflect.TypeToken;
import com.sailthru.client.ApiAction;
import java.lang.reflect.Type;

/**
 *
 * @author Prajwal Tuladhar 
 */
public class BlastQueryJob extends Job {
    
    private static final String JOB = "blast_query";
    
    protected int blast_id;
    
    public BlastQueryJob() {
        this.job = JOB;
    }
    
    public BlastQueryJob setBlastId(int blastId) {
        this.blast_id = blastId;
        return this;
    }
    
    @Override
    public Type getType() {
        return new TypeToken() {}.getType();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy