com.hivemq.spi.callback.security.authorization.AuthorizationBehaviour Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hivemq-spi Show documentation
Show all versions of hivemq-spi Show documentation
The Service Provider Interfaces for developing HiveMQ plugins.
package com.hivemq.spi.callback.security.authorization;
/**
* The Authorization behaviour which defines if
* an authorization was granted, denied or if
* another callback should be called
*
* @author Christoph Schäbel
* @since 3.0
*/
public enum AuthorizationBehaviour {
ACCEPT,
DENY,
NEXT
}