This commit is contained in:
crusader 2018-06-14 13:14:30 +09:00
parent a45cf9aebd
commit c429c01dec
2 changed files with 4 additions and 1 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.60-SNAPSHOT</version> <version>1.0.61-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -14,6 +14,9 @@ public interface NoAuthProbeService {
@ProbeAPI @ProbeAPI
NoAuthProbe regist(NoAuthProbe noAuthProbe) throws OverflowException; NoAuthProbe regist(NoAuthProbe noAuthProbe) throws OverflowException;
@WebappAPI
NoAuthProbe read(Long id) throws OverflowException;
@ProbeAPI @ProbeAPI
NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException; NoAuthProbe readByTempProbeKey(String tempProbeKey) throws OverflowException;