Package com.avoka.tm.vo
Class SecurityMgr
- java.lang.Object
-
- com.avoka.tm.vo.SecurityMgr
-
public class SecurityMgr extends Object
Provide a Security Manager value object class.- Since:
- 19.11.0
-
-
Constructor Summary
Constructors Constructor Description SecurityMgr()
SecurityMgr(com.avoka.fc.core.entity.SecurityManager securityManager)
Creates a new Security Mgr value object with the given Security ManagerSecurityMgr(Map fields)
Create a unit testing SecurityMgr value object with the given fields.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The Security Manager descriptionString
getLoginUrl()
The login urlString
getLogoutUrlChain()
The logout url chainString
getName()
The Security Manager nameMap<String,String>
getParameters()
The Security Manager parametersbyte[]
getSsoKeystoreData()
The SSO Keystore DataString
getSsoKeystorePassword()
The SSO Keystore PasswordString
getSsoPrivateKeyAlias()
The SSO Private Key AliasString
getSsoPrivateKeyPassword()
The SSO Private Key Passwordbyte[]
getSsoValidatorCertData()
The SSO Validator Certificate DataString
toString()
-
-
-
Constructor Detail
-
SecurityMgr
public SecurityMgr()
-
SecurityMgr
public SecurityMgr(com.avoka.fc.core.entity.SecurityManager securityManager)
Creates a new Security Mgr value object with the given Security Manager- Parameters:
securityManager
- the Security Manager entity (required)
-
SecurityMgr
public SecurityMgr(Map fields)
Create a unit testing SecurityMgr value object with the given fields.- Parameters:
fields
- the Security Manager entity fields (required)
-
-
Method Detail
-
toString
public String toString()
-
getName
public String getName()
The Security Manager name
-
getDescription
public String getDescription()
The Security Manager description
-
getLoginUrl
public String getLoginUrl()
The login url
-
getLogoutUrlChain
public String getLogoutUrlChain()
The logout url chain
-
getSsoKeystoreData
public byte[] getSsoKeystoreData()
The SSO Keystore Data
-
getSsoKeystorePassword
public String getSsoKeystorePassword()
The SSO Keystore Password
-
getSsoPrivateKeyAlias
public String getSsoPrivateKeyAlias()
The SSO Private Key Alias
-
getSsoPrivateKeyPassword
public String getSsoPrivateKeyPassword()
The SSO Private Key Password
-
getSsoValidatorCertData
public byte[] getSsoValidatorCertData()
The SSO Validator Certificate Data
-
-