Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:SecureAuthCorp/saidp-sdk-java in…
Browse files Browse the repository at this point in the history
…to rad-811
  • Loading branch information
mschaab-SA committed Jan 20, 2025
2 parents 33bbb5a + 8e642c2 commit a452ea6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package org.secureauth.sarestapi.data.Response;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import org.secureauth.sarestapi.data.Response.BaseResponse;
import org.secureauth.sarestapi.data.UserProfile.*;
Expand All @@ -17,6 +18,7 @@
*/
@XmlRootElement
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class UserProfileResponse extends BaseResponse{
private String userId;
private Map<String,UserProfileProperty> properties = new HashMap<>();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
package org.secureauth.sarestapi.data.UserProfile;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

/**
* Created by rrowcliffe on 5/1/16.
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class UserProfileProperty {
private String value;
private String isWritable;
Expand Down

0 comments on commit a452ea6

Please sign in to comment.