
org.wildfly.clustering.session.user.UserManagerConfiguration Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.session.user;
import java.util.function.Supplier;
import org.wildfly.clustering.marshalling.ByteBufferMarshaller;
import org.wildfly.clustering.server.manager.ManagerConfiguration;
/**
* Encapsulates the configuration of a user manager.
* @author Paul Ferraro
* @param the transient context type
*/
public interface UserManagerConfiguration extends ManagerConfiguration {
ByteBufferMarshaller getMarshaller();
Supplier getTransientContextFactory();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy