[java-oidc-common] branch dev/JCOMOIDC-41 updated: Javadoc fixes

Phil Smart philip.smart at jisc.ac.uk
Tue Sep 20 11:14:58 UTC 2022


This is an automated email from the git hooks/post-receive script.

philsmart pushed a commit to branch dev/JCOMOIDC-41
in repository java-oidc-common.

View the commit online:
http://git.shibboleth.net/view/?p=java-oidc-common.git;a=commit;h=fb65eaed511d080e06aea688efa6047cab9cff18

The following commit(s) were added to refs/heads/dev/JCOMOIDC-41 by this push:
     new fb65eae  Javadoc fixes
fb65eae is described below

commit fb65eaed511d080e06aea688efa6047cab9cff18
Author: Phil Smart <philip.smart at jisc.ac.uk>
AuthorDate: Tue Sep 20 12:14:53 2022 +0100

    Javadoc fixes
---
 .../net/shibboleth/oidc/profile/audit/AuditFields.java  |  7 +++++--
 .../net/shibboleth/oidc/profile/core/OidcEventIds.java  |  5 +++++
 .../AbstractAuthenticationRequestAuditExtractor.java    | 17 +++++++++++++++++
 3 files changed, 27 insertions(+), 2 deletions(-)

diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/audit/AuditFields.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/audit/AuditFields.java
index 909b476..dc838ff 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/audit/AuditFields.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/audit/AuditFields.java
@@ -36,7 +36,7 @@ public final class AuditFields {
     /** OIDC issuer. */
     @Nonnull @NotEmpty public static final String ISSUER = SAMLAuditFields.IDENTITY_PROVIDER;
     
-    /** OIDC proxy issuer. The downstream identity provider. */
+    /** OIDC proxy issuer. The upstream identity provider. */
     @Nonnull @NotEmpty public static final String PROXY_ISSUER = SAMLAuditFields.SERVICE_PROVIDER;
 
     /** The inbound (Nimbus) message class. */
@@ -97,7 +97,10 @@ public final class AuditFields {
     @Nonnull @NotEmpty public static final String ACRS = "ACRS";
     
     /** The authentication response result, including any error code if there are any. Useful in the proxy case.*/
-    @Nonnull @NotEmpty public static final String AUTHENTICATION_RESULT = "AUTHZR";
+    @Nonnull @NotEmpty public static final String AUTHENTICATION_RESULT = "AUTHNR";
+    
+    /** The authentication flow step e.g. authentication request, authentication response etc.*/
+    @Nonnull @NotEmpty public static final String AUTHENTICATION_FLOW_STEP = "AUTHNFS";
 
     
     /**
diff --git a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
index 4f8a10e..d05aead 100644
--- a/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
+++ b/oidc-common-profile-api/src/main/java/net/shibboleth/oidc/profile/core/OidcEventIds.java
@@ -92,6 +92,11 @@ public final class OidcEventIds {
      */
     @Nonnull @NotEmpty public static final String INVALID_ID_TOKEN = "InvalidIdToken";
     
+    /**
+     * The token is invalid.
+     */
+    @Nonnull @NotEmpty public static final String INVALID_TOKEN = "InvalidToken";
+    
     /**
      * The id_token is invalid.
      */
diff --git a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/audit/impl/AbstractAuthenticationRequestAuditExtractor.java b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/audit/impl/AbstractAuthenticationRequestAuditExtractor.java
index 595797c..b6aa400 100644
--- a/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/audit/impl/AbstractAuthenticationRequestAuditExtractor.java
+++ b/oidc-common-profile-impl/src/main/java/net/shibboleth/oidc/profile/audit/impl/AbstractAuthenticationRequestAuditExtractor.java
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the University Corporation for Advanced Internet Development,
+ * Inc. (UCAID) under one or more contributor license agreements.  See the
+ * NOTICE file distributed with this work for additional information regarding
+ * copyright ownership. The UCAID licenses this file to You under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file except in
+ * compliance with the License.  You may obtain a copy of the License at
+ *
+ *    http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
 package net.shibboleth.oidc.profile.audit.impl;
 
 import java.util.function.Function;

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list