Skip to content

Commit

Permalink
Merge pull request #30 from bgeeSA/develop
Browse files Browse the repository at this point in the history
Fix for unexpected result when deserializing FactorsResponse
  • Loading branch information
Ryan Rowcliffe committed Jan 25, 2018
2 parents f904e86 + 23ee96d commit bf085f1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/secureauth/sarestapi/data/Factors.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package org.secureauth.sarestapi.data;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import org.secureauth.sarestapi.resources.s;
import org.secureauth.sarestapi.util.JSONUtil;

Expand Down Expand Up @@ -28,6 +29,7 @@

@XmlRootElement(name= s.FACTORS)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Factors {

private String type;
Expand Down

0 comments on commit bf085f1

Please sign in to comment.