/* Copyright (C) 2005-2012, by the President and Fellows of Harvard College. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. Dataverse Network - A web application to share, preserve and analyze research data. Developed at the Institute for Quantitative Social Science, Harvard University. Version 3.0. */ /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package edu.harvard.iq.dvn.ingest.dsb; /** * * @author asone */ import java.util.*; import edu.harvard.iq.dvn.core.study.*; public interface ServiceRequest { /** * * * @param * @return *//* public void setServiceRequest(ServiceRequest sr); */ /** * * * @param * @return *//* public ServiceRequest getServiceRequest(); */ /* public String getSubsetFileName(); public int[] getVariableTypes(); public Map<String, String> getVariableFormats(); public String[] getVariableNames(); public Map<String, String> getRaw2SafeVarNameTable(); public String[] getVariableIDs (); public String[] getVariableLabels(); public Map<String, Map<String,String>> getValueTable(); public String getRequestType(); public String getDownloadRequestParameter(); public String getZeligModelName(); */ /* public static Map<String, Integer> xtabOutputOptions; public static Map<String, Integer> zeligOutputOptions; public static Map<String, Integer> zeligAnalysisOptions; public List<DataVariable> getDataVariablesForRequest(); public Map<String, List<String>> getListParametersForRequest(); public AdvancedStatGUIdata.Model getZeligModelSpec(); public String getSubsetFileName(); public int[] getVariableTypes() ; public Map<String, String> getVariableFormats() ; public String[] getVariableNames() ; */ /* public String[] safeVarNames ; public String[] renamedVariableArray; public String[] renamedResultArray; public Map<String, String> raw2safeTable ; public Map<String, String> safe2rawTable ; public boolean hasUnsafedVariableNames; public Map<String, String> getRaw2SafeVarNameTable(); public void checkVariableNames(); public List<String> getFileteredVarNameSet(List<String> varIdSet); public String[] getVariableIDs (); public Map<String, String> getVarIdToRawVarNameTable(); public Map<String, String> getRawVarNameToVarIdTable(); public String[] getVariableLabels(); public Map<String, Map<String,String>> getValueTable(); public Map<String, List<String>> getRecodedVarParameters(); public String getRequestType(); public String getDownloadRequestParameter(); public String getZeligModelName(); public String[] getXtabClassVars(); public String[] getXtabFreqVars(); public String[] getXtabOutputOptions(); public String getLHSformula(); public String getRHSformula(); public String[] getZeligOutputOptions(); public String getZeligSimulationOption(); public String getZeligSetxType(); public String getSetx1stSet(); public String getSetx2ndSet(); */ }