This commit is contained in:
crusader 2018-06-05 21:53:28 +09:00
parent 66576b56d7
commit c0618808bf
4 changed files with 4 additions and 5 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.5-SNAPSHOT</version> <version>1.0.6-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -18,6 +18,6 @@ public interface MetaHistoryTypeService {
MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException; MetaHistoryType regist(MetaHistoryType metaHistoryType) throws OverflowException;
@WebappAPI @WebappAPI
List<MetaHistoryType> registAllByMetaHistoryTypes(List<MetaHistoryType> metaHistoryTypes) throws OverflowException; List<MetaHistoryType> registAll(List<MetaHistoryType> metaHistoryTypes) throws OverflowException;
} }

View File

@ -2,7 +2,6 @@ package com.loafle.overflow.service.central.meta;
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.exception.OverflowException;
import com.loafle.overflow.model.meta.MetaProbeOs;
import com.loafle.overflow.model.meta.MetaProbePackage; import com.loafle.overflow.model.meta.MetaProbePackage;
import java.util.List; import java.util.List;
@ -12,5 +11,5 @@ import java.util.List;
*/ */
public interface MetaProbePackageService { public interface MetaProbePackageService {
@WebappAPI @WebappAPI
List<MetaProbePackage> readAllByMetaProbeOs(MetaProbeOs metaProbeOs) throws OverflowException; List<MetaProbePackage> readAllByMetaProbeOsID(Short metaProbeOsID) throws OverflowException;
} }

View File

@ -21,7 +21,7 @@ public interface NotificationService {
Page<Notification> readAllUnconfirmedByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException; Page<Notification> readAllUnconfirmedByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException;
@WebappAPI @WebappAPI
int readUnconfirmedCountByMemberEmail(String memberEmail) throws OverflowException; Long readUnconfirmedCountByMemberEmail(String memberEmail) throws OverflowException;
@WebappAPI @WebappAPI
Page<Notification> markAllAsReadByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException; Page<Notification> markAllAsReadByMemberEmail(String memberEmail, PageParams pageParams) throws OverflowException;