|
@@ -21,6 +21,8 @@ import java.util.List;
|
|
import org.springframework.beans.factory.BeanCreationException;
|
|
import org.springframework.beans.factory.BeanCreationException;
|
|
import org.springframework.security.access.ConfigAttribute;
|
|
import org.springframework.security.access.ConfigAttribute;
|
|
import org.springframework.security.access.SecurityConfig;
|
|
import org.springframework.security.access.SecurityConfig;
|
|
|
|
+import org.springframework.security.authorization.AuthorizationManager;
|
|
|
|
+import org.springframework.security.core.annotation.SecurityAnnotationScanner;
|
|
import org.springframework.security.web.access.channel.ChannelDecisionManagerImpl;
|
|
import org.springframework.security.web.access.channel.ChannelDecisionManagerImpl;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -29,7 +31,14 @@ import org.springframework.security.web.access.channel.ChannelDecisionManagerImp
|
|
*
|
|
*
|
|
* @author Luke Taylor
|
|
* @author Luke Taylor
|
|
* @since 3.0
|
|
* @since 3.0
|
|
|
|
+ * @deprecated In modern Spring Security APIs, each API manages its own configuration
|
|
|
|
+ * context. As such there is no direct replacement for this interface. In the case of
|
|
|
|
+ * method security, please see {@link SecurityAnnotationScanner} and
|
|
|
|
+ * {@link AuthorizationManager}. In the case of channel security, please see
|
|
|
|
+ * {@code HttpsRedirectFilter}. In the case of web security, please see
|
|
|
|
+ * {@link AuthorizationManager}.
|
|
*/
|
|
*/
|
|
|
|
+@Deprecated
|
|
public final class ChannelAttributeFactory {
|
|
public final class ChannelAttributeFactory {
|
|
|
|
|
|
private static final String OPT_REQUIRES_HTTP = "http";
|
|
private static final String OPT_REQUIRES_HTTP = "http";
|