test
This commit is contained in:
parent
084b236af1
commit
aa45e99b86
|
@ -24,7 +24,7 @@ public class Sensor {
|
|||
private Target target;
|
||||
private MetaCrawler metaCrawler;
|
||||
private String crawlerInputItems;
|
||||
private Short itemCount = 0;
|
||||
private Integer itemCount = 0;
|
||||
private String displayName;
|
||||
|
||||
// Transient property
|
||||
|
@ -100,11 +100,11 @@ public class Sensor {
|
|||
}
|
||||
|
||||
@Column(name = "ITEM_COUNT", nullable = false)
|
||||
public Short getItemCount() {
|
||||
public Integer getItemCount() {
|
||||
return itemCount;
|
||||
}
|
||||
|
||||
public void setItemCount(Short itemCount) {
|
||||
public void setItemCount(Integer itemCount) {
|
||||
this.itemCount = itemCount;
|
||||
}
|
||||
|
||||
|
|
|
@ -35,9 +35,6 @@ public interface MemberService {
|
|||
@WebappAPI
|
||||
void withdrawal(Long memberId) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<Member> readAllByProbeKey(String probeKey) throws OverflowException;
|
||||
|
||||
@WebappAPI
|
||||
List<Member> readAllByApiKey(String apikey) throws OverflowException;
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user