com.wavemaker.runtime.data.dao.WMGenericTemporalDao Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (C) 2022-2023 WaveMaker, Inc.
*
* 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.wavemaker.runtime.data.dao;
import java.util.List;
import java.util.Map;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import com.wavemaker.runtime.data.periods.PeriodClause;
/**
* @author Dilip Kumar
* @since 3/1/18
*/
public interface WMGenericTemporalDao extends WMGenericDao {
Page findByPeriod(List periodClauses, String query, Pageable pageable);
Page findByIdAndPeriod(Map identifier, List periodClauses, Pageable pageable);
int update(Map identifier, PeriodClause periodClause, E entity);
int update(PeriodClause periodClause, String filter, final E entity);
int delete(Map identifier, PeriodClause periodClause);
int delete(PeriodClause periodClause, String filter);
}