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 JDBC8 * @param userId9 * @param hashCode10 * @throws Exception11 */12 public void createHashCode(Long userId, String hashCode) throws Exception ;13 14 }15