@@ -165,14 +165,14 @@ public static JSONObject buildCodonJuggle(
165165 */
166166 public static JSONObject buildVerify (
167167 final String filenameSequences ,
168- final String constraintsFilename ,
168+ Vendor vendor ,
169169 final String sequencePatternsFilename )
170170 throws BOOSTClientException , IOException {
171171
172172 //---------------------------------
173173 // verify the given values
174174 ParameterValueVerifier .verifyFilename (JSONKeys .SEQUENCE_INFORMATION , filenameSequences );
175- ParameterValueVerifier .verifyFilename ( JSONKeys . CONSTRAINTS_INFORMATION , constraintsFilename );
175+ ParameterValueVerifier .verifyNull ( BOOSTConstants . VENDOR , vendor );
176176 // the sequence patterns filename is optional
177177 if (null != sequencePatternsFilename && !sequencePatternsFilename .trim ().isEmpty ()) {
178178 ParameterValueVerifier .verifyFilename (JSONKeys .PATTERN_INFORMATION , sequencePatternsFilename );
@@ -202,8 +202,7 @@ public static JSONObject buildVerify(
202202
203203 //---------------------------------
204204 // CONSTRAINTS
205- requestData .put (JSONKeys .CONSTRAINTS_INFORMATION ,
206- RequestBuilder .buildConstraints (constraintsFilename ));
205+ requestData .put (JSONKeys .VENDOR_NAME , vendor );
207206 //---------------------------------
208207
209208
0 commit comments