Skip to content

Commit

Permalink
fix(jans-auth-server): fix missing jsonobject annotation (#1651)
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Rojas Blum <javier.rojas.blum@gmail.com>
  • Loading branch information
qbert2k committed Jul 1, 2022
1 parent cfacf5a commit be5b82a
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -26,7 +26,7 @@

/**
* @author Javier Rojas Blum
* @version April 25, 2022
* @version June 30, 2022
*/
@DataEntry(sortBy = {"displayName"})
@ObjectClass(value = "jansClnt")
Expand Down Expand Up @@ -79,22 +79,27 @@ public class Client extends DeletableEntity implements Serializable {
private String idTokenTokenBindingCnf;

@AttributeName(name = "displayName")
@JsonObject
@LanguageTag
private LocalizedString clientName = new LocalizedString();

@AttributeName(name = "jansLogoURI")
@JsonObject
@LanguageTag
private LocalizedString logoUri = new LocalizedString();

@AttributeName(name = "jansClntURI")
@JsonObject
@LanguageTag
private LocalizedString clientUri = new LocalizedString();

@AttributeName(name = "jansPolicyURI")
@JsonObject
@LanguageTag
private LocalizedString policyUri = new LocalizedString();

@AttributeName(name = "jansTosURI")
@JsonObject
@LanguageTag
private LocalizedString tosUri = new LocalizedString();

Expand Down

0 comments on commit be5b82a

Please sign in to comment.