Examples of JSTreeAccessSessionMySQL


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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryChilderNodes(int, java.lang.String)
   */
  @Override
  public List<JSTree> queryChilderNodes(int id,String userName) {
    return new JSTreeAccessSessionMySQL().getNodeChilden(id, userName);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryJSTreeNodeById(int)
   */
  @Override
  public JSTree queryJSTreeNodeById(int id) {
    return new JSTreeAccessSessionMySQL().getNodeById(id);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#addJSTreeNode(int, int, java.lang.String, java.lang.String)
   */
  @Override
  public int addJSTreeNode(int parentId, int position, String title,String userName) {
    return new JSTreeAccessSessionMySQL().addNode(parentId, position, title,userName);
  }
View Full Code Here

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

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

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

   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#moveJSTreeNode(int, int, int, java.lang.String, boolean, java.lang.String)
   */
  @Override
  public boolean moveJSTreeNode(int id, int refId, int position,
      String title, boolean copy, String userName) {
    return new JSTreeAccessSessionMySQL().moveNode(id, refId, position, title, copy,userName);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#updateJSTreeNode(int, java.lang.String)
   */
  @Override
  public boolean updateJSTreeNode(int id, String title) {
    return new JSTreeAccessSessionMySQL().updateNodeName(id, title);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryAllFolderFilters(java.lang.String)
   */
  @Override
  public List<String> queryAllFolderFilters(String userName) {
    return new JSTreeAccessSessionMySQL().getAllFolderFilters(userName);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryFolderFilters(int)
   */
  @Override
  public List<String> queryFolderFilters(int nodeId) {
    return new JSTreeAccessSessionMySQL().getFolderFilters(nodeId);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#moveFilterNode(int, int, int)
   */
  @Override
  public boolean moveFilterNode(int filterId, int refId, int parentId) {
    return new JSTreeAccessSessionMySQL().moveFilter(filterId, refId, parentId);
  }
View Full Code Here

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

   * @return
   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#queryRootNode(int)
   */
  @Override
  public List<JSTree> queryRootNode(int id) {
    return new JSTreeAccessSessionMySQL().getRootNode(id);
  }
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.