ing
This commit is contained in:
parent
66576b56d7
commit
c0618808bf
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user