1 package com.atlassian.vcache;
2
3 import com.atlassian.annotations.PublicApi;
4
5 /**
6 * Represents the characteristics common to all types of caches.
7 *
8 * @since 1.0
9 */
10 @PublicApi
11 public interface VCache {
12 /**
13 * The name of the cache, uniquely identifies this cache.
14 *
15 * @return the name of the cache
16 */
17 String getName();
18 }