Package com.alibaba.otter.manager.biz.statistics.table.dal.ibatis

Source Code of com.alibaba.otter.manager.biz.statistics.table.dal.ibatis.IbatisTableStatDAO

/*
* Copyright (C) 2010-2101 Alibaba Group Holding Limited.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.alibaba.otter.manager.biz.statistics.table.dal.ibatis;

import java.util.List;

import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport;

import com.alibaba.otter.manager.biz.statistics.table.dal.TableStatDAO;
import com.alibaba.otter.manager.biz.statistics.table.dal.dataobject.TableStatDO;
import com.alibaba.otter.manager.biz.statistics.table.param.BehaviorHistoryCondition;

/**
* @author simon
*/
public class IbatisTableStatDAO extends SqlMapClientDaoSupport implements TableStatDAO {

    @Override
    public void insertTableStat(TableStatDO tableStat) {

        getSqlMapClientTemplate().insert("insertTableStat", tableStat);
    }

    @Override
    public void deleteTableStat(Long tableStatId) {
        getSqlMapClientTemplate().delete("deleteTableStatById", tableStatId);
    }

    @Override
    public int modifyTableStat(TableStatDO tableStat) {
        return (getSqlMapClientTemplate().update("modifyTableStat", tableStat));
    }

    @Override
    public TableStatDO findTableStatById(Long tableStatId) {

        return (TableStatDO) getSqlMapClientTemplate().queryForObject("findTableStatById", tableStatId);
    }

    @Override
    public TableStatDO findTableStatByPipelineIdAndPairId(Long pipelineId, Long dataMediaPairId) {
        TableStatDO tableStat = new TableStatDO();
        tableStat.setPipelineId(pipelineId);
        tableStat.setDataMediaPairId(dataMediaPairId);
        return (TableStatDO) getSqlMapClientTemplate().queryForObject("findTableStatByPipelineIdAndDataMediaPairId",
                                                                      tableStat);
    }

    @Override
    public List<TableStatDO> listTableStatsByPipelineId(Long pipelineId) {

        return (List<TableStatDO>) getSqlMapClientTemplate().queryForList("listTableStatsByPipelineId", pipelineId);
    }

    @Override
    public List<TableStatDO> listTableStatsByPairId(Long dataMediaPairId) {

        return (List<TableStatDO>) getSqlMapClientTemplate().queryForList("listTableStatsByDataMediaPairId",
                                                                          dataMediaPairId);
    }

    public List<TableStatDO> listTimelineTableStat(BehaviorHistoryCondition condition) {
        return (List<TableStatDO>) getSqlMapClientTemplate().queryForList("listTimelineTableStat", condition);
    }

}
TOP

Related Classes of com.alibaba.otter.manager.biz.statistics.table.dal.ibatis.IbatisTableStatDAO

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.