Class SecurityConfig

java.lang.Object
org.springframework.security.access.SecurityConfig
All Implemented Interfaces:
Serializable, ConfigAttribute
Direct Known Subclasses:
Jsr250SecurityConfig

@Deprecated public class SecurityConfig extends Object implements ConfigAttribute
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 SecurityAnnotationScanner and AuthorizationManager. In the case of channel security, please see HttpsRedirectFilter. In the case of web security, please see AuthorizationManager.
Stores a ConfigAttribute as a String.
See Also:
  • Constructor Details

    • SecurityConfig

      public SecurityConfig(String config)
      Deprecated.
  • Method Details

    • equals

      public boolean equals(Object obj)
      Deprecated.
      Overrides:
      equals in class Object
    • getAttribute

      public String getAttribute()
      Deprecated.
      Description copied from interface: ConfigAttribute
      If the ConfigAttribute can be represented as a String and that String is sufficient in precision to be relied upon as a configuration parameter by a RunAsManager, AccessDecisionManager or AccessDecisionManager delegate, this method should return such a String.

      If the ConfigAttribute cannot be expressed with sufficient precision as a String, null should be returned. Returning null will require any relying classes to specifically support the ConfigAttribute implementation, so returning null should be avoided unless actually required.

      Specified by:
      getAttribute in interface ConfigAttribute
      Returns:
      a representation of the configuration attribute (or null if the configuration attribute cannot be expressed as a String with sufficient precision).
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Deprecated.
      Overrides:
      toString in class Object
    • createListFromCommaDelimitedString

      public static List<ConfigAttribute> createListFromCommaDelimitedString(String access)
      Deprecated.
    • createList

      public static List<ConfigAttribute> createList(String... attributeNames)
      Deprecated.