package org.intermine.app.net.request.post; /* * Copyright (C) 2015 InterMine * * This code may be freely distributed and modified under the * terms of the GNU Lesser General Public Licence. This should * be distributed with the code. See the LICENSE file for more * information or http://www.gnu.org/copyleft/lesser.html. * */ import android.content.Context; import org.intermine.app.R; import org.intermine.app.core.Gene; import java.util.List; /** * @author Daria Komkova <Daria_Komkova @ hotmail.com> */ public class AppendGenesToListRequest extends CreateGenesList { public AppendGenesToListRequest(Context ctx, String mineName, String listName, List<Gene> genes) { super(ctx, mineName, listName, genes); } @Override public String getUrl() { return getBaseUrl(mMineName) + getContext().getString(R.string.append_to_lists_path); } }