This commit is contained in:
insanity 2018-06-08 12:09:02 +09:00
parent 084b236af1
commit aa45e99b86
2 changed files with 3 additions and 6 deletions

View File

@ -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;
}

View File

@ -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;