Uses of Class
com.retek.rsm.app.security.service.EncryptedTextVo

Packages that use EncryptedTextVo
com.retek.command   
com.retek.rsm.app.security.command   
com.retek.rsm.app.security.service   
com.retek.rsm.app.security.service.impl   
com.retek.rsm.user.passwordmap   
 

Uses of EncryptedTextVo in com.retek.command
 

Methods in com.retek.command with parameters of type EncryptedTextVo
 UserAuthenticateCommand CommandFactory.create(java.lang.String userName, EncryptedTextVo encryptedPassword)
           
 

Uses of EncryptedTextVo in com.retek.rsm.app.security.command
 

Constructors in com.retek.rsm.app.security.command with parameters of type EncryptedTextVo
UserAuthenticateCommand(java.lang.String userName, EncryptedTextVo encryptedPassword)
           
 

Uses of EncryptedTextVo in com.retek.rsm.app.security.service
 

Methods in com.retek.rsm.app.security.service that return EncryptedTextVo
 EncryptedTextVo EncryptionUtil.encrypt(com.retek.platform.service.ClientContext context, java.lang.String cleartext, PublicKeyEncryptionStrategyVo publicKeyEncryptionStrategy)
          Returns an instance of EncryptedTextVo, a value object the is an encrypted representation of the passed in data and the algorithm/encryption key.
 EncryptedTextVo ApplicationLaunchParameterVo.getPassword()
           
 

Methods in com.retek.rsm.app.security.service with parameters of type EncryptedTextVo
 void SecurityService.authenticate(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword)
          Authenticate a username and encrypted password against a system defined service.
 LoginCredentialsVo SecurityService.login(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword, com.retek.platform.app.security.service.Application application, PublicKeyEncryptionStrategyVo appLaunchParameterPasswordEncryptionKey)
          Authenticate a username and enrypted password against a system defined service and retrieve user information.
 LoginCredentialsWithContentModelVo SecurityService.loginAndGetContentModel(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword, com.retek.platform.app.security.service.Application application)
          Authenticate a username and encrypted password, retrieve user information and fetch the secure content model.
 java.lang.String EncryptionUtil.decrypt(com.retek.platform.service.ClientContext context, EncryptedTextVo encryptedPassword)
          Returns a decrypted String representation of the passed EncryptedTextVo.
 void ApplicationLaunchParameterVo.setPassword(EncryptedTextVo password)
           
 

Uses of EncryptedTextVo in com.retek.rsm.app.security.service.impl
 

Methods in com.retek.rsm.app.security.service.impl that return EncryptedTextVo
static EncryptedTextVo EncryptionTextTransformer.transform(EncryptedText encryptedText)
           
 

Methods in com.retek.rsm.app.security.service.impl with parameters of type EncryptedTextVo
 void SecurityServiceEjb.authenticate(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword)
           
 LoginCredentialsVo SecurityServiceEjb.login(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword, com.retek.platform.app.security.service.Application application, PublicKeyEncryptionStrategyVo appLaunchParameterPasswordKey)
           
 LoginCredentialsWithContentModelVo SecurityServiceEjb.loginAndGetContentModel(com.retek.platform.service.ClientContext context, java.lang.String userName, EncryptedTextVo encryptedPassword, com.retek.platform.app.security.service.Application application)
           
static EncryptedText EncryptionTextTransformer.transform(EncryptedTextVo encryptedTextVo)
           
 

Uses of EncryptedTextVo in com.retek.rsm.user.passwordmap
 

Methods in com.retek.rsm.user.passwordmap that return EncryptedTextVo
 EncryptedTextVo PasswordMapContainer.encryptPassword(java.lang.String password)