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)
{