[java-idp-oidc] branch main updated: Remove now-unused metadata context class.
Scott Cantor
cantor.2 at osu.edu
Mon Mar 21 19:40:36 UTC 2022
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-idp-oidc.
View the commit online:
http://git.shibboleth.net/view/?p=java-idp-oidc.git;a=commit;h=d9c29dc1420a6c5b029129fcc851e4cff7859e54
The following commit(s) were added to refs/heads/main by this push:
new d9c29dc1 Remove now-unused metadata context class.
d9c29dc1 is described below
commit d9c29dc1420a6c5b029129fcc851e4cff7859e54
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Mon Mar 21 15:40:34 2022 -0400
Remove now-unused metadata context class.
---
.../op/messaging/context/OIDCMetadataContext.java | 62 ----------------------
1 file changed, 62 deletions(-)
diff --git a/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/messaging/context/OIDCMetadataContext.java b/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/messaging/context/OIDCMetadataContext.java
deleted file mode 100644
index ab7ebc93..00000000
--- a/idp-oidc-extension-api/src/main/java/net/shibboleth/idp/plugin/oidc/op/messaging/context/OIDCMetadataContext.java
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * 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.idp.plugin.oidc.op.messaging.context;
-
-import javax.annotation.Nullable;
-
-import org.opensaml.messaging.context.BaseContext;
-
-import com.nimbusds.openid.connect.sdk.rp.OIDCClientInformation;
-
-/**
- * Subcontext carrying information on metadata of the relying party. This
- * context appears as a subcontext of the
- * {@link org.opensaml.messaging.context.MessageContext} that carries the actual
- * OIDC request message, in such cases the metadata carried herein applies to
- * the issuer of that message.
- *
- * This context is just a placeholder for the final solution. At first phase we
- * use only redirect uris.
- *
- * @deprecated As of 3.1.0, moved to {@link net.shibboleth.oidc.metadata.context.OIDCMetadataContext}
- */
- at Deprecated(forRemoval = true, since = "3.1.0")
-public class OIDCMetadataContext extends BaseContext {
-
- /** The client information. */
- @Nullable private OIDCClientInformation clientInformation;
-
- /**
- * Set the client information.
- *
- * @return The client information.
- */
- @Nullable
- public OIDCClientInformation getClientInformation() {
- return clientInformation;
- }
-
- /**
- * Set the client information.
- *
- * @param information The client information.
- */
- public void setClientInformation(@Nullable final OIDCClientInformation information) {
- clientInformation = information;
- }
-}
\ No newline at end of file
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list