Examples of HomeFilterAccessSessionMySQL


Examples of com.sogou.qadev.service.cynthia.dao.HomeFilterAccessSessionMySQL

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#addHomeFilter(java.lang.String, java.lang.String)
   */
  @Override
  public boolean addHomeFilter(String userName, String filterId) {
    return new HomeFilterAccessSessionMySQL().addHomeFilter(userName, filterId);
  }
View Full Code Here

Examples of com.sogou.qadev.service.cynthia.dao.HomeFilterAccessSessionMySQL

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryHomeFilter(java.lang.String)
   */
  @Override
  public String queryHomeFilter(String userName) {
    return new HomeFilterAccessSessionMySQL().getHomeFilter(userName);
  }
View Full Code Here

Examples of com.sogou.qadev.service.cynthia.dao.HomeFilterAccessSessionMySQL

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#updateHomeFilter(java.lang.String, java.lang.String)
   */
  @Override
  public boolean updateHomeFilter(String userName, String filterId) {
    return new HomeFilterAccessSessionMySQL().updateHomeFilter(userName, filterId);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.