metaSensorDisplayName method name change

This commit is contained in:
insanity 2018-05-30 12:24:26 +09:00
parent 75baaacbbb
commit 69dbbc118c
2 changed files with 4 additions and 1 deletions

View File

@ -16,5 +16,5 @@ public interface MetaSensorDisplayMappingService {
MetaSensorDisplayMapping regist(MetaSensorDisplayMapping m) throws OverflowException;
@WebappAPI
List<MetaSensorItemKey> findAllByDisplayItem(MetaSensorDisplayItem displayItem) throws OverflowException;
List<MetaSensorItemKey> readAllMetaSensorItemKeyByDisplayItem(MetaSensorDisplayItem displayItem) throws OverflowException;
}

View File

@ -2,6 +2,7 @@ package com.loafle.overflow.service.central.probe;
import java.util.List;
import com.loafle.overflow.core.annotation.WebappAPI;
import com.loafle.overflow.core.exception.OverflowException;
import com.loafle.overflow.model.probe.ProbeHost;
@ -12,5 +13,7 @@ public interface ProbeHostService {
ProbeHost read(Long id) throws OverflowException;
ProbeHost readByProbeID(Long probeID) throws OverflowException;
ProbeHost regist(ProbeHost probeHost) throws OverflowException;
@WebappAPI
List<ProbeHost> readAllByDomainID(Long domain) throws OverflowException;
}