Skip to content

Commit

Permalink
merge 1.53.2
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Sep 12, 2024
2 parents 5cc6a0c + a7e9661 commit 16179f4
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.savant
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ javaErrorVersion = "2.2.3"
restifyVersion = "4.2.1"
testngVersion = "7.5.1"

project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.53.0", licenses: ["ApacheV2_0"]) {
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.53.2", licenses: ["ApacheV2_0"]) {
workflow {
fetch {
cache()
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-java-client</artifactId>
<version>1.53.0</version>
<version>1.53.2</version>
<packaging>jar</packaging>

<name>FusionAuth Java Client Library</name>
Expand Down
38 changes: 38 additions & 0 deletions src/main/java/io/fusionauth/domain/SimpleThemeVariables.java
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,44 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {

public String primaryButtonTextFocusColor;

public SimpleThemeVariables() {
}

public SimpleThemeVariables(SimpleThemeVariables other) {
this.alertBackgroundColor = other.alertBackgroundColor;
this.alertFontColor = other.alertFontColor;
this.backgroundImageURL = other.backgroundImageURL;
this.backgroundSize = other.backgroundSize;
this.borderRadius = other.borderRadius;
this.deleteButtonColor = other.deleteButtonColor;
this.deleteButtonFocusColor = other.deleteButtonFocusColor;
this.deleteButtonTextColor = other.deleteButtonTextColor;
this.deleteButtonTextFocusColor = other.deleteButtonTextFocusColor;
this.errorFontColor = other.errorFontColor;
this.errorIconColor = other.errorIconColor;
this.fontColor = other.fontColor;
this.fontFamily = other.fontFamily;
this.footerDisplay = other.footerDisplay;
this.iconBackgroundColor = other.iconBackgroundColor;
this.iconColor = other.iconColor;
this.infoIconColor = other.infoIconColor;
this.inputBackgroundColor = other.inputBackgroundColor;
this.inputIconColor = other.inputIconColor;
this.inputTextColor = other.inputTextColor;
this.linkTextColor = other.linkTextColor;
this.linkTextFocusColor = other.linkTextFocusColor;
this.logoImageSize = other.logoImageSize;
this.logoImageURL = other.logoImageURL;
this.monoFontColor = other.monoFontColor;
this.monoFontFamily = other.monoFontFamily;
this.pageBackgroundColor = other.pageBackgroundColor;
this.panelBackgroundColor = other.panelBackgroundColor;
this.primaryButtonColor = other.primaryButtonColor;
this.primaryButtonFocusColor = other.primaryButtonFocusColor;
this.primaryButtonTextColor = other.primaryButtonTextColor;
this.primaryButtonTextFocusColor = other.primaryButtonTextFocusColor;
}

@Override
public boolean equals(Object o) {
if (this == o) {
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/io/fusionauth/domain/UserLoginFailedReason.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import java.util.UUID;

import com.inversoft.error.Errors;
import com.inversoft.json.JacksonConstructor;
import com.inversoft.json.ToString;

/**
Expand All @@ -33,6 +34,10 @@ public class UserLoginFailedReason implements Buildable<UserLoginFailedReason> {

public Errors lambdaResult;

@JacksonConstructor
public UserLoginFailedReason() {
}

public UserLoginFailedReason(String code) {
this.code = code;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2019, FusionAuth, All Rights Reserved
* Copyright (c) 2018-2024, FusionAuth, All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -28,7 +28,7 @@
* @author Brian Pontarelli
*/
public class UserSearchCriteria extends BaseElasticSearchCriteria implements Buildable<UserSearchCriteria> {
public final static Set<String> SortableFields = new LinkedHashSet<>(Arrays.asList("birthDate",
public static final Set<String> SortableFields = new LinkedHashSet<>(Arrays.asList("birthDate",
"email",
"fullName",
"id",
Expand Down

0 comments on commit 16179f4

Please sign in to comment.