This commit is contained in:
crusader 2018-06-05 20:52:28 +09:00
parent 2815cb42a9
commit 66576b56d7
2 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@
<groupId>com.loafle.overflow</groupId> <groupId>com.loafle.overflow</groupId>
<artifactId>commons-java</artifactId> <artifactId>commons-java</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>1.0.4-SNAPSHOT</version> <version>1.0.5-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -1,24 +1,24 @@
package com.loafle.overflow.service.central.history; package com.loafle.overflow.service.central.history;
import com.loafle.overflow.core.annotation.WebappAPI; import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.core.model.PageParams; import com.loafle.overflow.core.model.PageParams;
import com.loafle.overflow.model.history.History; import com.loafle.overflow.model.history.History;
import com.loafle.overflow.model.meta.MetaHistoryType;
import org.springframework.data.domain.Page; import org.springframework.data.domain.Page;
public interface HistoryService { public interface HistoryService {
// ?? // ??
History regist(History history); History regist(History history) throws OverflowException;
@WebappAPI @WebappAPI
Page<History> readAllByProbeIDAndMetaHistoryTypeID(Long probeID, Integer metaHistoryTypeID, PageParams pageParams); Page<History> readAllByProbeIDAndMetaHistoryTypeID(Long probeID, Integer metaHistoryTypeID, PageParams pageParams) throws OverflowException;
@WebappAPI @WebappAPI
Page<History> readAllByProbeID(Long probeID, PageParams pageParams); Page<History> readAllByProbeID(Long probeID, PageParams pageParams) throws OverflowException;
@WebappAPI @WebappAPI
Page<History> readAllByDomainID(Long domainID, PageParams pageParams); Page<History> readAllByDomainID(Long domainID, PageParams pageParams) throws OverflowException;
@WebappAPI @WebappAPI
Page<History> readAllByDomainIDAndMetaHistoryTypeID(Long domainID, Integer metaHistoryTypeID, PageParams pageParams); Page<History> readAllByDomainIDAndMetaHistoryTypeID(Long domainID, Integer metaHistoryTypeID, PageParams pageParams) throws OverflowException;
} }