* @return the authorities granted to the principal, or an empty collection if the
- * token has not been authenticated. Never null.Saml2AssertAu
+ * token has not been authenticated. Never null.
*/
Collection extends GrantedAuthority> getAuthorities();
@@ -144,7 +144,7 @@ public interface Authentication extends Principal, Serializable {
* @since 7.0
*/
default Builder, ?, ?> toBuilder() {
- return new NoopAuthenticationBuilder(this);
+ return new SimpleAuthentication.Builder(this);
}
/**
diff --git a/core/src/main/java/org/springframework/security/core/NoopAuthenticationBuilder.java b/core/src/main/java/org/springframework/security/core/NoopAuthenticationBuilder.java
deleted file mode 100644
index 982630c8e4..0000000000
--- a/core/src/main/java/org/springframework/security/core/NoopAuthenticationBuilder.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright 2004-present the original author or authors.
- *
- * Licensed 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
- *
- * https://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 org.springframework.security.core;
-
-import java.util.Collection;
-import java.util.function.Consumer;
-
-import org.jspecify.annotations.Nullable;
-
-/**
- * An adapter implementation of {@link Authentication.Builder} that provides a no-op
- * implementation for the principal, credentials, and authorities
- *
- * @author Josh Cummings
- * @since 7.0
- */
-class NoopAuthenticationBuilder implements Authentication.Builder