File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
model/src/main/java/org/mskcc/smile/model/igo Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 1414 *
1515 * @author ochoaa
1616 */
17- @ JsonIgnoreProperties ({"numFastQs" })
17+ @ JsonIgnoreProperties (value = {"numFastQs" }, ignoreUnknown = true )
1818public class Library implements Serializable {
1919 @ Id @ GeneratedValue
2020 private Long id ;
Original file line number Diff line number Diff line change 11package org .mskcc .smile .model .igo ;
22
3+ import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
34import com .fasterxml .jackson .annotation .JsonProperty ;
45import java .io .Serializable ;
56import org .apache .commons .lang .builder .ToStringBuilder ;
1011 *
1112 * @author ochoaa
1213 */
14+ @ JsonIgnoreProperties (ignoreUnknown = true )
1315public class QcReport implements Serializable {
1416 public enum QcReportType {
1517 DNA , RNA , LIBRARY ;
Original file line number Diff line number Diff line change 11package org .mskcc .smile .model .igo ;
22
3+ import com .fasterxml .jackson .annotation .JsonIgnoreProperties ;
34import java .io .Serializable ;
45import java .util .ArrayList ;
56import java .util .Collections ;
1213 *
1314 * @author ochoaa
1415 */
15-
16+ @ JsonIgnoreProperties ( ignoreUnknown = true )
1617public class Run implements Serializable {
1718 @ Id @ GeneratedValue
1819 private Long id ;
You can’t perform that action at this time.
0 commit comments