01: /*
02: * Created on 04/09/2006 22:04:17
03: */
04: package net.jforum.dao;
05:
06: /**
07: * @author Rafael Steil
08: * @version $Id: ApiDAO.java,v 1.2 2006/10/10 00:49:04 rafaelsteil Exp $
09: */
10: public interface ApiDAO {
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: }
|