KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > javabb > dao > entity > IUserSecurityDAO


1 package org.javabb.dao.entity;
2
3 import org.javabb.dao.DAOConstants;
4
5 public interface IUserSecurityDAO extends DAOConstants{
6     /**
7      * Just for security, this userCode is generated only by JDBC
8      * @param userId
9      * @param hashCode
10      * @throws Exception
11      */

12     public void createHashCode(Long JavaDoc userId, String JavaDoc hashCode) throws Exception JavaDoc;
13
14 }
15
Popular Tags