Skip to content

Commit 958caaa

Browse files
authored
FIX openam-clientsdk errors (#901)
1 parent 25bddbc commit 958caaa

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

openam-clientsdk/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* information: "Portions copyright [year] [name of copyright owner]".
1414
*
1515
* Copyright 2011-2016 ForgeRock AS.
16-
* Portions copyright 2023 3A Systems LLC
16+
* Portions copyright 2017-2023 3A Systems LLC
1717
*
1818
-->
1919
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
@@ -135,7 +135,7 @@
135135
<include>org.openidentityplatform.commons.i18n-framework:core</include>
136136
<include>org.openidentityplatform.commons.i18n-framework:slf4j</include>
137137
<include>org.openidentityplatform.commons:util</include>
138-
<include>com.google.guava:guava:jar:</include>
138+
<include>com.google.guava:*</include>
139139
<include>org.openidentityplatform.commons.http-framework:core</include>
140140
<include>com.fasterxml.jackson.core:jackson-databind</include>
141141
<include>com.fasterxml.jackson.core:jackson-core</include>

openam-core/src/main/java/com/iplanet/am/util/SystemProperties.java

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
* "Portions Copyrighted [year] [name of copyright owner]"
2424
*
2525
* Portions Copyrighted 2010-2016 ForgeRock AS.
26+
* Portions Copyrighted 2017-2025 3A Systems, LLC
2627
*/
2728
package com.iplanet.am.util;
2829

@@ -48,7 +49,6 @@
4849
import java.util.concurrent.atomic.AtomicReference;
4950

5051
import javax.annotation.Nullable;
51-
import javax.xml.rpc.holders.StringHolder;
5252

5353
import com.google.common.base.Predicate;
5454
import com.google.common.cache.Cache;
@@ -794,4 +794,11 @@ PropertiesHolder putAll(Properties newProperties) {
794794
return new PropertiesHolder(Maps.fromProperties(newProperties));
795795
}
796796
}
797+
798+
private static class StringHolder {
799+
public String value=null;
800+
public StringHolder(String property) {
801+
this.value=property;
802+
}
803+
}
797804
}

0 commit comments

Comments
 (0)