com.terracotta.management.ApplicationEhCacheService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of management-ehcache-common Show documentation
Show all versions of management-ehcache-common Show documentation
A common library shared between different management-ehcache implementation versions
package com.terracotta.management;
import java.util.Map;
import java.util.Set;
import net.sf.ehcache.config.ManagementRESTServiceConfiguration;
import net.sf.ehcache.management.service.ManagementServerLifecycle;
import net.sf.ehcache.management.service.impl.RemoteAgentEndpointImpl;
public interface ApplicationEhCacheService {
public Set> getRestResourceClasses();
Map, Object> getServiceClasses(ManagementRESTServiceConfiguration configuration,
RemoteAgentEndpointImpl remoteAgentEndpointImpl);
Class extends ManagementServerLifecycle> getManagementServerLifecyle();
}