-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Removed the 'Exareme' restriction requiring all algorithm names to be in uppercase. * Fixed a bug in which we incorrectly expected the algorithm parameter to contain the variable "default" instead of "default_value." * Fixed a bug in which we incorrectly converted incoming str to int.
- Loading branch information
1 parent
24bae61
commit 95f246f
Showing
6 changed files
with
79 additions
and
27 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package hbp.mip.utils; | ||
|
||
import hbp.mip.models.DTOs.exareme2.Exareme2AlgorithmSpecificationDTO; | ||
import org.springframework.stereotype.Component; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
@Component | ||
public class Exareme2AlgorithmsSpecs { | ||
private List<Exareme2AlgorithmSpecificationDTO> algorithms = new ArrayList<>(); | ||
|
||
|
||
public List<Exareme2AlgorithmSpecificationDTO> getAlgorithms() { | ||
return algorithms; | ||
} | ||
|
||
public void setAlgorithms(List<Exareme2AlgorithmSpecificationDTO> algorithms) { | ||
this.algorithms = algorithms; | ||
} | ||
} |