1 package com.atlassian.vcache.internal;
2
3 /**
4 * The management interface that contains methods to obtain information and manage the caches.
5 *
6 * @since 1.0
7 */
8 public interface VCacheManagement
9 {
10 // TODO: Add support for management of the caches. Specifically:
11 // - get the names of the caches
12 // - get appropriate details for the caches
13 // - ability to clear JvmCache and ExternalCache
14 }