Package com.sogou.qadev.service.cynthia.dao

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


   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#addEvent(java.lang.String)
   */
  @Override
  public boolean addEvent(String eventName) {
    return new EventUserAccessSessionMySQL().addEvent(eventName);
  }
View Full Code Here


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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#removeEventUser(java.lang.String, int)
   */
  @Override
  public boolean removeEventUser(String userName, int eventId) {
    return new EventUserAccessSessionMySQL().deleteEventUser(userName, eventId);
  }
View Full Code Here

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#updateEvent(java.lang.String)
   */
  @Override
  public boolean updateEvent(String eventName) {
    return new EventUserAccessSessionMySQL().updateEvent(eventName);
  }
View Full Code Here

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

TOP

Related Classes of com.sogou.qadev.service.cynthia.dao.EventUserAccessSessionMySQL

Copyright © 2018 www.massapicom. 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.