Skip to content

Commit

Permalink
hri - cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmyjames committed Apr 22, 2024
1 parent a1ba2a9 commit 6850a35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,11 @@ public class SelfSignedTLSClientAuth {
@JsonProperty("credentials")
private List<Credential> credentials;

/**
* Create a new instance
*/
public SelfSignedTLSClientAuth() {}

/**
* Create a new instance
* @param credentials the credentials to use
*/
public SelfSignedTLSClientAuth(List<Credential> credentials) {
public SelfSignedTLSClientAuth(@JsonProperty("credentials") List<Credential> credentials) {
this.credentials = credentials;
}

Expand Down
7 changes: 1 addition & 6 deletions src/main/java/com/auth0/json/mgmt/client/TLSClientAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,11 @@ public class TLSClientAuth {
@JsonProperty("credentials")
private List<Credential> credentials;

/**
* Create a new instance
*/
public TLSClientAuth() {}

/**
* Create a new instance
* @param credentials the credentials to use
*/
public TLSClientAuth(List<Credential> credentials) {
public TLSClientAuth(@JsonProperty("credentials") List<Credential> credentials) {
this.credentials = credentials;
}

Expand Down

0 comments on commit 6850a35

Please sign in to comment.