KeyPrefix.java 133 B

12345678
  1. package se.cloud.analysis.redis;
  2. public interface KeyPrefix {
  3. public int getExpireSeconds();
  4. public String getPrefix();
  5. }