[java-plugin-shibd] branch main updated: Add address to Object methods.
Codeberg
noreply at shibboleth.net
Tue Apr 14 14:34:45 UTC 2026
This is an automated email from the git hooks/post-receive script.
codeberg pushed a commit to branch main
in repository java-plugin-shibd.
View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd/commit/1743375244c598acd7f13999c2b3452039db0a65
The following commit(s) were added to refs/heads/main by this push:
new 1743375 Add address to Object methods.
1743375 is described below
commit 1743375244c598acd7f13999c2b3452039db0a65
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Tue Apr 14 10:34:21 2026 -0400
Add address to Object methods.
---
.../src/main/java/net/shibboleth/sp/state/StateData.java | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/sp-server-api/src/main/java/net/shibboleth/sp/state/StateData.java b/sp-server-api/src/main/java/net/shibboleth/sp/state/StateData.java
index ee27333..4eaafe4 100644
--- a/sp-server-api/src/main/java/net/shibboleth/sp/state/StateData.java
+++ b/sp-server-api/src/main/java/net/shibboleth/sp/state/StateData.java
@@ -254,14 +254,18 @@ public class StateData {
final StateData other = (StateData) obj;
return Objects.equals(acrs, other.acrs)
&& Objects.equals(authenticatingAuthority, other.authenticatingAuthority)
- && Objects.equals(issuer, other.issuer) && Objects.equals(requestTime, other.requestTime)
- && Objects.equals(resource, other.resource) && Objects.equals(responseLocation, other.responseLocation);
+ && Objects.equals(issuer, other.issuer)
+ && Objects.equals(requestTime, other.requestTime)
+ && Objects.equals(resource, other.resource)
+ && Objects.equals(responseLocation, other.responseLocation)
+ && Objects.equals(clientAddress, other.clientAddress);
}
/** {@inheritDoc} */
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
+ .add("clientAddress", clientAddress)
.add("issuer", issuer)
.add("authenticatingAuthority", authenticatingAuthority)
.add("requestTime", requestTime)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list