Skip to content

Commit

Permalink
toString()
Browse files Browse the repository at this point in the history
Signed-off-by: Maciej Mierzwa <[email protected]>
  • Loading branch information
MaciejMierzwa committed Apr 12, 2023
1 parent 8ac26a9 commit d0fbebc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public static class Dynamic {
@Override
public String toString() {
return "Dynamic [filtered_alias_mode=" + filtered_alias_mode + ", kibana=" + kibana + ", http=" + http + ", authc=" + authc + ", authz="
+ authz + "]";
+ authz + ", extensions=" + extensions + "]";
}
}

Expand Down Expand Up @@ -339,5 +339,10 @@ public String getEncryptionKey() {
public void setEncryptionKey(String encryptionKey) {
this.encryptionKey = encryptionKey;
}

@Override
public String toString() {
return "Extensions [signing_key=" + signingKey + ", encryption_key='" + encryptionKey +"]";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public static class Dynamic {
@Override
public String toString() {
return "Dynamic [filtered_alias_mode=" + filtered_alias_mode + ", kibana=" + kibana + ", http=" + http + ", authc=" + authc + ", authz="
+ authz + "]";
+ authz + ", extensions=" + extensions + "]";
}
}

Expand Down Expand Up @@ -479,5 +479,10 @@ public String getEncryptionKey() {
public void setEncryptionKey(String encryptionKey) {
this.encryptionKey = encryptionKey;
}

@Override
public String toString() {
return "Extensions [signing_key=" + signingKey + ", encryption_key='" + encryptionKey +"]";
}
}
}

0 comments on commit d0fbebc

Please sign in to comment.