org.wildfly.clustering.session.cache.Contextual Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.session.cache;
import org.wildfly.clustering.server.util.Supplied;
/**
* Implemented by object with a supplied context.
* @param the context type
* @author Paul Ferraro
*/
public interface Contextual {
/**
* Returns the context as a supplied value.
* @return a supplied context.
*/
Supplied getContext();
}