javax.cache.mbeans.CacheStatisticsMXBean Maven / Gradle / Ivy
The newest version!
/**
* Copyright (c) 2011 Terracotta, Inc.
* Copyright (c) 2011 Oracle and/or its affiliates.
*
* All rights reserved. Use is subject to license terms.
*/
package javax.cache.mbeans;
import javax.cache.CacheStatistics;
import javax.management.MXBean;
/**
* A management bean for cache.
*
* Each cache's statistics object must be registered with an ObjectName that is unique and has the following:
*
* Type:
* javax.cache:type=CacheStatistics
*
* Required Attributes:
*
* - CacheManager Name
*
- Cache Name
*
*
* @author Greg Luck
* @author Yannis Cosmadopoulos
* @since 1.0
*/
@MXBean
public interface CacheStatisticsMXBean extends CacheStatistics {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy