io.zbus.mq.server.auth.TokenTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zbus Show documentation
Show all versions of zbus Show documentation
a lightweight yet powerful MQ and RPC to build service bus
package io.zbus.mq.server.auth;
import java.util.concurrent.ConcurrentHashMap;
public class TokenTable extends ConcurrentHashMap {
private static final long serialVersionUID = 7167983253412165928L;
private boolean enabled = false;
public boolean isEnabled() {
return enabled;
}
public void setEnabled(boolean enabled) {
this.enabled = enabled;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy