ApiDAO.java
Upload User: gdxydsw
Upload Date: 2019-01-29
Package Size: 16721k
Code Size: 0k
Category:

Java Develop

Development Platform:

Java

  1. /*
  2.  * Created on 04/09/2006 22:04:17
  3.  */
  4. package net.jforum.dao;
  5. /**
  6.  * @author Rafael Steil
  7.  * @version $Id: ApiDAO.java,v 1.2 2006/10/10 00:49:04 rafaelsteil Exp $
  8.  */
  9. public interface ApiDAO
  10. {
  11. /**
  12.  * Check if the given API authentication information is valid.
  13.  * @param apiKey the api key
  14.  * @return <code>true</code> if the information is correct
  15.  */
  16. public boolean isValid(String apiKey);
  17. }