ApiDAO.java
上传用户:gdxydsw
上传日期:2019-01-29
资源大小:16721k
文件大小:0k
源码类别:

Java编程

开发平台:

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. }