-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from bd2kccd/development
Merge v0.0.1 to Master
- Loading branch information
Showing
27 changed files
with
1,195 additions
and
1,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 54 additions & 52 deletions
106
src/main/java/edu/pitt/dbmi/ccd/rest/client/dto/algo/AlgorithmParamRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,63 +1,65 @@ | ||
package edu.pitt.dbmi.ccd.rest.client.dto.algo; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
|
||
/** | ||
* | ||
* | ||
* Aug 25, 2016 2:20:41 PM | ||
* | ||
* | ||
* @author Chirayu (Kong) Wongchokprasitti, PhD | ||
* | ||
* | ||
*/ | ||
public class AlgorithmParamRequest { | ||
|
||
private long datasetFileId; | ||
|
||
private Map<String, Object> dataValidation; | ||
|
||
private Map<String, Object> AlgorithmParameters; | ||
|
||
private Map<String, Object> jvmOptions; | ||
|
||
private Map<String, Object> hpcParameters; | ||
|
||
public long getDatasetFileId() { | ||
return datasetFileId; | ||
} | ||
|
||
public void setDatasetFileId(long dataFileId) { | ||
this.datasetFileId = dataFileId; | ||
} | ||
|
||
public Map<String, Object> getDataValidation() { | ||
return dataValidation; | ||
} | ||
|
||
public void setDataValidation(Map<String, Object> dataValidation) { | ||
this.dataValidation = dataValidation; | ||
} | ||
|
||
public Map<String, Object> getAlgorithmParameters() { | ||
return AlgorithmParameters; | ||
} | ||
|
||
public void setAlgorithmParameters(Map<String, Object> algorithmParameters) { | ||
AlgorithmParameters = algorithmParameters; | ||
} | ||
|
||
public Map<String, Object> getJvmOptions() { | ||
return jvmOptions; | ||
} | ||
|
||
public void setJvmOptions(Map<String, Object> jvmOptions) { | ||
this.jvmOptions = jvmOptions; | ||
} | ||
|
||
public Map<String, Object> getHpcParameters() { | ||
return hpcParameters; | ||
} | ||
|
||
public void setHpcParameters(Map<String, Object> hpcParameters) { | ||
this.hpcParameters = hpcParameters; | ||
} | ||
private long datasetFileId; | ||
|
||
private Map<String, Object> dataValidation; | ||
|
||
private Map<String, Object> AlgorithmParameters; | ||
|
||
private Map<String, Object> jvmOptions; | ||
|
||
private List<HpcParameter> hpcParameters; | ||
|
||
public long getDatasetFileId() { | ||
return datasetFileId; | ||
} | ||
|
||
public void setDatasetFileId(long dataFileId) { | ||
this.datasetFileId = dataFileId; | ||
} | ||
|
||
public Map<String, Object> getDataValidation() { | ||
return dataValidation; | ||
} | ||
|
||
public void setDataValidation(Map<String, Object> dataValidation) { | ||
this.dataValidation = dataValidation; | ||
} | ||
|
||
public Map<String, Object> getAlgorithmParameters() { | ||
return AlgorithmParameters; | ||
} | ||
|
||
public void setAlgorithmParameters(Map<String, Object> algorithmParameters) { | ||
AlgorithmParameters = algorithmParameters; | ||
} | ||
|
||
public Map<String, Object> getJvmOptions() { | ||
return jvmOptions; | ||
} | ||
|
||
public void setJvmOptions(Map<String, Object> jvmOptions) { | ||
this.jvmOptions = jvmOptions; | ||
} | ||
|
||
public List<HpcParameter> getHpcParameters() { | ||
return hpcParameters; | ||
} | ||
|
||
public void setHpcParameters(List<HpcParameter> hpcParameters) { | ||
this.hpcParameters = hpcParameters; | ||
} | ||
|
||
} |
49 changes: 49 additions & 0 deletions
49
src/main/java/edu/pitt/dbmi/ccd/rest/client/dto/algo/HpcParameter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Copyright (C) 2015 University of Pittsburgh. | ||
* | ||
* This library is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public | ||
* License along with this library; if not, write to the Free Software | ||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
* MA 02110-1301 USA | ||
*/ | ||
package edu.pitt.dbmi.ccd.rest.client.dto.algo; | ||
|
||
/** | ||
* | ||
* Feb 21, 2017 12:24:39 PM | ||
* | ||
* @author Chirayu Kong Wongchokprasitti, PhD (chw20@pitt.edu) | ||
* | ||
*/ | ||
public class HpcParameter { | ||
|
||
private String key; | ||
|
||
private String value; | ||
|
||
public String getKey() { | ||
return key; | ||
} | ||
|
||
public void setKey(String key) { | ||
this.key = key; | ||
} | ||
|
||
public String getValue() { | ||
return value; | ||
} | ||
|
||
public void setValue(String value) { | ||
this.value = value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.