[java-shib-shared] branch main updated: Deprecate the RepositorySupport class.

Codeberg noreply at shibboleth.net
Wed Jul 8 18:32:05 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-shib-shared.

View the commit online:
https://codeberg.org/Shibboleth/java-shib-shared/commit/c55386dbf39f4f0ec3686aab2c8b4cb7de4436cb

The following commit(s) were added to refs/heads/main by this push:
     new c55386db Deprecate the RepositorySupport class.
c55386db is described below

commit c55386dbf39f4f0ec3686aab2c8b4cb7de4436cb
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Wed Jul 8 14:31:56 2026 -0400

    Deprecate the RepositorySupport class.
---
 .../net/shibboleth/shared/testing/RepositorySupport.java     | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/shib-testing/src/main/java/net/shibboleth/shared/testing/RepositorySupport.java b/shib-testing/src/main/java/net/shibboleth/shared/testing/RepositorySupport.java
index f92859ce..bdc0acc5 100644
--- a/shib-testing/src/main/java/net/shibboleth/shared/testing/RepositorySupport.java
+++ b/shib-testing/src/main/java/net/shibboleth/shared/testing/RepositorySupport.java
@@ -24,7 +24,10 @@ import net.shibboleth.shared.primitive.StringSupport;
  * Support class for working with the project version control repository.
  * 
  * <p>NOTE: If this changes, change the "additional" copy in shib-spring.</p>
+ * 
+ * @deprecated
  */
+ at Deprecated(since="5.3.0" ,forRemoval=true)
 public final class RepositorySupport {
     
     /** Constructor. */
@@ -38,7 +41,10 @@ public final class RepositorySupport {
      * @param resourcePath The relative resource path within the repository, e.g. "foo/bar/baz/file.txt"
      * 
      * @return the HTTPS resource URL
+     * 
+     * @deprecated
      */
+    @Deprecated(since="5.3.0" ,forRemoval=true)
     @Nonnull public static String buildHTTPSResourceURL(@Nonnull final String repoName,
             @Nonnull final String resourcePath) {
         return buildHTTPResourceURL(repoName, resourcePath, true, "HEAD");
@@ -52,7 +58,10 @@ public final class RepositorySupport {
      * @param https if true, use https if possible, otherwise use http
      * 
      * @return the HTTP(S) resource URL
+     * 
+     * @deprecated
      */
+    @Deprecated(since="5.3.0" ,forRemoval=true)
     @Nonnull public static String buildHTTPResourceURL(@Nonnull final String repoName,
             @Nonnull final String resourcePath, final boolean https) {
         return buildHTTPResourceURL(repoName, resourcePath, https, "HEAD");
@@ -69,7 +78,10 @@ public final class RepositorySupport {
      * @return the HTTP(S) resource URL
      * 
      * @since 8.2.0
+     * 
+     * @deprecated
      */
+    @Deprecated(since="5.3.0" ,forRemoval=true)
     @Nonnull public static String buildHTTPResourceURL(@Nonnull final String repoName,
             @Nonnull final String resourcePath, final boolean https, @Nonnull @NotEmpty final String branch) {
         

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


More information about the commits mailing list