Class ActiveMQSecurityManagerImpl
java.lang.Object
org.apache.activemq.artemis.spi.core.security.ActiveMQSecurityManagerImpl
- All Implemented Interfaces:
ActiveMQSecurityManager
@Deprecated
public class ActiveMQSecurityManagerImpl
extends Object
implements ActiveMQSecurityManager
Deprecated.
A basic implementation of the ActiveMQSecurityManager. This can be used within an appserver and be deployed by
BasicUserCredentialsDeployer or used standalone or embedded.
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.ActiveMQSecurityManagerImpl(SecurityConfiguration configuration) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.booleanvalidateUser(String username, String password) Deprecated.is this a valid user.booleanDeprecated.is this a valid user and do they have the correct roleMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.activemq.artemis.spi.core.security.ActiveMQSecurityManager
getDomain, getUserFromSubject, init
-
Constructor Details
-
ActiveMQSecurityManagerImpl
public ActiveMQSecurityManagerImpl()Deprecated. -
ActiveMQSecurityManagerImpl
Deprecated.
-
-
Method Details
-
validateUser
Deprecated.Description copied from interface:ActiveMQSecurityManageris this a valid user.- Specified by:
validateUserin interfaceActiveMQSecurityManager- Parameters:
username- the userpassword- the users password- Returns:
trueif a valid user
-
validateUserAndRole
public boolean validateUserAndRole(String user, String password, Set<Role> roles, CheckType checkType) Deprecated.Description copied from interface:ActiveMQSecurityManageris this a valid user and do they have the correct role- Specified by:
validateUserAndRolein interfaceActiveMQSecurityManager- Parameters:
user- the userpassword- the users passwordroles- the roles the user hascheckType- the type of check to perform- Returns:
trueif the user is valid and they have the correct roles
-
getConfiguration
Deprecated.
-