/dependencies/last.fm-bindings/src/main/java/de/umass/lastfm/cache/ExpirationPolicy.java

http://github.com/tulskiy/musique · Java · 48 lines · 5 code · 5 blank · 38 comment · 0 complexity · cad1ada4c9cb00c85666e7e74a978dfa MD5 · raw file

  1. /*
  2. * Copyright (c) 2010, the Last.fm Java Project and Committers
  3. * All rights reserved.
  4. *
  5. * Redistribution and use of this software in source and binary forms, with or without modification, are
  6. * permitted provided that the following conditions are met:
  7. *
  8. * - Redistributions of source code must retain the above
  9. * copyright notice, this list of conditions and the
  10. * following disclaimer.
  11. *
  12. * - Redistributions in binary form must reproduce the above
  13. * copyright notice, this list of conditions and the
  14. * following disclaimer in the documentation and/or other
  15. * materials provided with the distribution.
  16. *
  17. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
  18. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
  19. * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  20. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  21. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  22. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  23. * TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  24. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. */
  26. package de.umass.lastfm.cache;
  27. import java.util.Map;
  28. /**
  29. * The <code>ExpirationPolicy</code> decides if and how long a request should be cached.
  30. *
  31. * @author Janni Kovacs
  32. */
  33. public interface ExpirationPolicy {
  34. /**
  35. * Returns the time in milliseconds a request of the given method should be cached. Returns -1 if this
  36. * method should not be cached.
  37. *
  38. * @param method The method called
  39. * @param params The parameters sent
  40. * @return the time the request should be cached in milliseconds
  41. */
  42. public long getExpirationTime(String method, Map<String, String> params);
  43. }