Skip to content

Commit 16179f4

Browse files
committed
merge 1.53.2
2 parents 5cc6a0c + a7e9661 commit 16179f4

File tree

5 files changed

+47
-4
lines changed

5 files changed

+47
-4
lines changed

build.savant

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ javaErrorVersion = "2.2.3"
2121
restifyVersion = "4.2.1"
2222
testngVersion = "7.5.1"
2323

24-
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.53.0", licenses: ["ApacheV2_0"]) {
24+
project(group: "io.fusionauth", name: "fusionauth-java-client", version: "1.53.2", licenses: ["ApacheV2_0"]) {
2525
workflow {
2626
fetch {
2727
cache()

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
<groupId>io.fusionauth</groupId>
1919
<artifactId>fusionauth-java-client</artifactId>
20-
<version>1.53.0</version>
20+
<version>1.53.2</version>
2121
<packaging>jar</packaging>
2222

2323
<name>FusionAuth Java Client Library</name>

src/main/java/io/fusionauth/domain/SimpleThemeVariables.java

+38
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,44 @@ public class SimpleThemeVariables implements Buildable<SimpleThemeVariables> {
8888

8989
public String primaryButtonTextFocusColor;
9090

91+
public SimpleThemeVariables() {
92+
}
93+
94+
public SimpleThemeVariables(SimpleThemeVariables other) {
95+
this.alertBackgroundColor = other.alertBackgroundColor;
96+
this.alertFontColor = other.alertFontColor;
97+
this.backgroundImageURL = other.backgroundImageURL;
98+
this.backgroundSize = other.backgroundSize;
99+
this.borderRadius = other.borderRadius;
100+
this.deleteButtonColor = other.deleteButtonColor;
101+
this.deleteButtonFocusColor = other.deleteButtonFocusColor;
102+
this.deleteButtonTextColor = other.deleteButtonTextColor;
103+
this.deleteButtonTextFocusColor = other.deleteButtonTextFocusColor;
104+
this.errorFontColor = other.errorFontColor;
105+
this.errorIconColor = other.errorIconColor;
106+
this.fontColor = other.fontColor;
107+
this.fontFamily = other.fontFamily;
108+
this.footerDisplay = other.footerDisplay;
109+
this.iconBackgroundColor = other.iconBackgroundColor;
110+
this.iconColor = other.iconColor;
111+
this.infoIconColor = other.infoIconColor;
112+
this.inputBackgroundColor = other.inputBackgroundColor;
113+
this.inputIconColor = other.inputIconColor;
114+
this.inputTextColor = other.inputTextColor;
115+
this.linkTextColor = other.linkTextColor;
116+
this.linkTextFocusColor = other.linkTextFocusColor;
117+
this.logoImageSize = other.logoImageSize;
118+
this.logoImageURL = other.logoImageURL;
119+
this.monoFontColor = other.monoFontColor;
120+
this.monoFontFamily = other.monoFontFamily;
121+
this.pageBackgroundColor = other.pageBackgroundColor;
122+
this.panelBackgroundColor = other.panelBackgroundColor;
123+
this.primaryButtonColor = other.primaryButtonColor;
124+
this.primaryButtonFocusColor = other.primaryButtonFocusColor;
125+
this.primaryButtonTextColor = other.primaryButtonTextColor;
126+
this.primaryButtonTextFocusColor = other.primaryButtonTextFocusColor;
127+
}
128+
91129
@Override
92130
public boolean equals(Object o) {
93131
if (this == o) {

src/main/java/io/fusionauth/domain/UserLoginFailedReason.java

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import java.util.UUID;
2020

2121
import com.inversoft.error.Errors;
22+
import com.inversoft.json.JacksonConstructor;
2223
import com.inversoft.json.ToString;
2324

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

3435
public Errors lambdaResult;
3536

37+
@JacksonConstructor
38+
public UserLoginFailedReason() {
39+
}
40+
3641
public UserLoginFailedReason(String code) {
3742
this.code = code;
3843
}

src/main/java/io/fusionauth/domain/search/UserSearchCriteria.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018-2019, FusionAuth, All Rights Reserved
2+
* Copyright (c) 2018-2024, FusionAuth, All Rights Reserved
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,7 +28,7 @@
2828
* @author Brian Pontarelli
2929
*/
3030
public class UserSearchCriteria extends BaseElasticSearchCriteria implements Buildable<UserSearchCriteria> {
31-
public final static Set<String> SortableFields = new LinkedHashSet<>(Arrays.asList("birthDate",
31+
public static final Set<String> SortableFields = new LinkedHashSet<>(Arrays.asList("birthDate",
3232
"email",
3333
"fullName",
3434
"id",

0 commit comments

Comments
 (0)