Package com.sogou.qadev.service.cynthia.bean.impl

Examples of com.sogou.qadev.service.cynthia.bean.impl.TimerActionImpl


   * @return
   */
  public TimerAction createTimerAction()
  {
    UUID timerActionId = DataAccessFactory.getInstance().newUUID("TIAC");
    return new TimerActionImpl(timerActionId);
  }
View Full Code Here


      pstm.setLong(1, Long.parseLong(timerActionId.getValue()));

      rst = pstm.executeQuery();
      if(rst.next())
      {
        timerAction = new TimerActionImpl(timerActionId);

        timerAction.setName(rst.getString("name"));
        timerAction.setClassName(rst.getString("class_name"));
        timerAction.setMethod(rst.getString("method"));
        timerAction.setParam(rst.getString("param"));
View Full Code Here

      rst = pstm.executeQuery();
      while(rst.next())
      {
        UUID id = DataAccessFactory.getInstance().createUUID(rst.getObject("id").toString());
        TimerAction timerAction = new TimerActionImpl(id);

        timerAction.setName(rst.getString("name"));
        timerAction.setClassName(rst.getString("class_name"));
        timerAction.setMethod(rst.getString("method"));
        timerAction.setParam(rst.getString("param"));
        timerAction.setCreateUser(rst.getString("create_user"));
        timerActionSet.add(timerAction);
      }
    }
    catch(Exception e)
    {
View Full Code Here

     
      rst = pstm.executeQuery();
      while(rst.next())
      {
        UUID id = DataAccessFactory.getInstance().createUUID(rst.getObject("id").toString());
        TimerAction timerAction = new TimerActionImpl(id);

        timerAction.setName(rst.getString("name"));
        timerAction.setClassName(rst.getString("class_name"));
        timerAction.setMethod(rst.getString("method"));
        timerAction.setParam(rst.getString("param"));
        timerAction.setCreateUser(rst.getString("create_user"));
        timerAction.setIsPublic(rst.getBoolean("is_public"));
        timerActionSet.add(timerAction);
      }
    }
    catch(Exception e)
    {
View Full Code Here

TOP

Related Classes of com.sogou.qadev.service.cynthia.bean.impl.TimerActionImpl

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.