A self hosted chat application with end-to-end encrypted messaging.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
243 B

  1. package org.ros.chatto.logged;
  2. import org.springframework.cache.annotation.CacheEvict;
  3. public class TokenCacheUtil {
  4. @CacheEvict(value = "userTokenCache", key = "#cacheKey")
  5. public static void evictSingleTokenValue(String cacheKey) {
  6. }
  7. }