org.wildfly.clustering.session.cache.user.UserContext Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.session.cache.user;
import org.wildfly.clustering.server.util.Supplied;
/**
* Cache entry storing persistent and transient user context.
* @param the persistent context type
* @param the transient context type
* @author Paul Ferraro
*/
public interface UserContext {
PC getPersistentContext();
Supplied getTransientContext();
}