Uses of Class
com.avoka.fc.core.entity.SecurityManager
-
Packages that use SecurityManager Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.security Provides classes related to security and authentication.com.avoka.fc.core.service Provides the SmartForm Manager service classes.com.avoka.fc.core.service.test Provides web automated test services.com.avoka.tm.vo Provides Value Object persistent entity classes. -
-
Uses of SecurityManager in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return SecurityManager Modifier and Type Method Description SecurityManager
SecurityManagerDao. getDefaultSecurityManager()
Return the default active Security Manager.SecurityManager
SecurityManagerDao. getSecurityManagerForName(String name)
Gets the security manager for name.SecurityManager
SecurityManagerDao. getSecurityManagerForPK(Object id)
Return the Security Manager instance for the given id.SecurityManager
SecurityManagerDao. getSecurityManagerForPortal(Portal portal)
Return the Security Manager for the given portal, or the default Security Manager if non associated.Methods in com.avoka.fc.core.dao that return types with arguments of type SecurityManager Modifier and Type Method Description List<SecurityManager>
SecurityManagerDao. getSecurityManagerList()
Return the list of Security Managers.List<SecurityManager>
SecurityManagerDao. getSecurityManagerList(String keyword, boolean activeOnly)
Return the list of Security Managers for the given keyword and active statusMethods in com.avoka.fc.core.dao with parameters of type SecurityManager Modifier and Type Method Description SecurityManagerLog
SecurityManagerLogDao. createLog(SecurityManager sm, Portal portal, HttpServletRequest request, Integer responseStatus, String responseRedirect, ErrorLog errorLog, StringBuilder logMessage)
Create a SecurityManagerLog object from the given parameters.AuthenticationProvider
AuthenticationProviderDao. getAuthenticationProviderBySequenceNumber(SecurityManager securityManager, int sequenceNumber)
Return the authentication provider for the security manager and sequence number.int
AuthenticationProviderDao. getMaxSequenceNumber(SecurityManager securityManager)
Return the maximum authentication sequence number for the given security manager.List<AuthenticationProvider>
AuthenticationProviderDao. getOrderedAuthenticationProvider(SecurityManager securityManager)
Return the authentication ordered set authentication providers for the given security manager.int
AuthenticationProviderDao. getPreviousSequenceNumber(SecurityManager securityManager, int currentSequenceNumber)
Return the previous sequence number for the given security manager and current sequence number. -
Uses of SecurityManager in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type SecurityManager Modifier and Type Field Description static org.apache.cayenne.exp.Property<SecurityManager>
_AuthenticationProvider. SECURITY_MANAGER
Provides the 'SECURITY_MANAGER' property.static org.apache.cayenne.exp.Property<SecurityManager>
_Portal. SECURITY_MANAGER
Provides the 'SECURITY_MANAGER' property.static org.apache.cayenne.exp.Property<SecurityManager>
_SecurityManagerLog. SECURITY_MANAGER
Provides the 'SECURITY_MANAGER' property.static org.apache.cayenne.exp.Property<SecurityManager>
_SecurityManagerParameter. SECURITY_MANAGER
Provides the 'SECURITY_MANAGER' property.static org.apache.cayenne.exp.Property<List<SecurityManager>>
_ServiceDefinition. TWO_FACTOR_AUTHENTICATION_SECURITY_MANAGERS
Provides the 'TWO_FACTOR_AUTHENTICATION_SECURITY_MANAGERS' property.Methods in com.avoka.fc.core.entity.auto that return SecurityManager Modifier and Type Method Description SecurityManager
_AuthenticationProvider. getSecurityManager()
Return the SecurityManager.SecurityManager
_Portal. getSecurityManager()
Return the SecurityManager.SecurityManager
_SecurityManagerLog. getSecurityManager()
Return the SecurityManager.SecurityManager
_SecurityManagerParameter. getSecurityManager()
Return the SecurityManager.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type SecurityManager Modifier and Type Method Description List<SecurityManager>
_ServiceDefinition. getTwoFactorAuthenticationSecurityManagers()
Return the TwoFactorAuthenticationSecurityManagers.Methods in com.avoka.fc.core.entity.auto with parameters of type SecurityManager Modifier and Type Method Description void
_ServiceDefinition. addToTwoFactorAuthenticationSecurityManagers(SecurityManager obj)
Add the TwoFactorAuthenticationSecurityManagers object.void
_ServiceDefinition. removeFromTwoFactorAuthenticationSecurityManagers(SecurityManager obj)
Remove the TwoFactorAuthenticationSecurityManagers object.void
_AuthenticationProvider. setSecurityManager(SecurityManager securityManager)
Set the SecurityManager.void
_Portal. setSecurityManager(SecurityManager securityManager)
Set the SecurityManager.void
_SecurityManagerLog. setSecurityManager(SecurityManager securityManager)
Set the SecurityManager.void
_SecurityManagerParameter. setSecurityManager(SecurityManager securityManager)
Set the SecurityManager. -
Uses of SecurityManager in com.avoka.fc.core.security
Methods in com.avoka.fc.core.security that return SecurityManager Modifier and Type Method Description protected SecurityManager
SSOAuthenticationFilter. getSecurityManager(Portal portal)
Return the security manager for the portal.Methods in com.avoka.fc.core.security with parameters of type SecurityManager Modifier and Type Method Description protected boolean
SSOAuthenticationFilter. isRevalidationRequired(HttpServletRequest request, org.springframework.security.core.Authentication currentUserAuthentication, Portal portal, SecurityManager securityManager)
Return the true if for the request requires revalidationvoid
SAML2AttributesParser. setFromSecurityManager(SecurityManager securityManager)
Set the configuration properties from the SecurityManager instead of setting individually.void
GroovyUserDetailsAuthenticationProvider. setSecurityManager(SecurityManager securityManager)
Deprecated.- this security manager is resolved from the current portalvoid
ISecurityManagerAware. setSecurityManager(SecurityManager securityManager)
Set the object security manager.Constructors in com.avoka.fc.core.security with parameters of type SecurityManager Constructor Description OAuth2Authenticator(HttpServletRequest request, SecurityManager securityManager)
Create a OAuth2Authenticator from the given request, security manager.SecurityManagerService(SecurityManager securityManager, Portal portal)
Create a Security Manager Service with the given security manager configuration entity and portal.WSTrustSAMLAuthenticator(org.springframework.security.authentication.UsernamePasswordAuthenticationToken credentialToken, SecurityManager securityManager)
Create a WS-Trust SAML authenticator with the given authentication token and security manager. -
Uses of SecurityManager in com.avoka.fc.core.service
Methods in com.avoka.fc.core.service that return SecurityManager Modifier and Type Method Description SecurityManager
DatabaseConfigService. createSecurityManagerFromTemplate(String newSecurityManagerName, String templateName)
Creates the security manager from template. -
Uses of SecurityManager in com.avoka.fc.core.service.test
Methods in com.avoka.fc.core.service.test that return SecurityManager Modifier and Type Method Description SecurityManager
MockEntityService. createSecurityManager()
Create a default local Security Manager entity. -
Uses of SecurityManager in com.avoka.tm.vo
Constructors in com.avoka.tm.vo with parameters of type SecurityManager Constructor Description SecurityMgr(SecurityManager securityManager)
Creates a new Security Mgr value object with the given Security Manager
-