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