target remove page
This commit is contained in:
parent
1ed4f9cf5d
commit
650807141a
@ -8,4 +8,44 @@ public class SensorConfig {
|
|||||||
private SensorConfigCrawler crawler;
|
private SensorConfigCrawler crawler;
|
||||||
private SensorConfigConnection connection;
|
private SensorConfigConnection connection;
|
||||||
private SensorConfigItems items;
|
private SensorConfigItems items;
|
||||||
}
|
|
||||||
|
public Long getSensorID() {
|
||||||
|
return sensorID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSensorID(Long sensorID) {
|
||||||
|
this.sensorID = sensorID;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SensorConfigSchedule getSchedule() {
|
||||||
|
return schedule;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSchedule(SensorConfigSchedule schedule) {
|
||||||
|
this.schedule = schedule;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SensorConfigCrawler getCrawler() {
|
||||||
|
return crawler;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCrawler(SensorConfigCrawler crawler) {
|
||||||
|
this.crawler = crawler;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SensorConfigConnection getConnection() {
|
||||||
|
return connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setConnection(SensorConfigConnection connection) {
|
||||||
|
this.connection = connection;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SensorConfigItems getItems() {
|
||||||
|
return items;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setItems(SensorConfigItems items) {
|
||||||
|
this.items = items;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -9,4 +9,52 @@ public class SensorConfigConnection {
|
|||||||
private Integer port;
|
private Integer port;
|
||||||
private String metaCryptoTypeKey;
|
private String metaCryptoTypeKey;
|
||||||
private Map<String, String> credentials;
|
private Map<String, String> credentials;
|
||||||
}
|
|
||||||
|
public String getMetaIPTypeKey() {
|
||||||
|
return metaIPTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaIPTypeKey(String metaIPTypeKey) {
|
||||||
|
this.metaIPTypeKey = metaIPTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getIp() {
|
||||||
|
return ip;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIp(String ip) {
|
||||||
|
this.ip = ip;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMetaPortTypeKey() {
|
||||||
|
return metaPortTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaPortTypeKey(String metaPortTypeKey) {
|
||||||
|
this.metaPortTypeKey = metaPortTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getPort() {
|
||||||
|
return port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPort(Integer port) {
|
||||||
|
this.port = port;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMetaCryptoTypeKey() {
|
||||||
|
return metaCryptoTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaCryptoTypeKey(String metaCryptoTypeKey) {
|
||||||
|
this.metaCryptoTypeKey = metaCryptoTypeKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, String> getCredentials() {
|
||||||
|
return credentials;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCredentials(Map<String, String> credentials) {
|
||||||
|
this.credentials = credentials;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -3,4 +3,20 @@ package com.loafle.overflow.model.sensorconfig;
|
|||||||
public class SensorConfigCrawler {
|
public class SensorConfigCrawler {
|
||||||
private String metaCrawlerContainerKey;
|
private String metaCrawlerContainerKey;
|
||||||
private String metaCrawlerKey;
|
private String metaCrawlerKey;
|
||||||
}
|
|
||||||
|
public String getMetaCrawlerContainerKey() {
|
||||||
|
return metaCrawlerContainerKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaCrawlerContainerKey(String metaCrawlerContainerKey) {
|
||||||
|
this.metaCrawlerContainerKey = metaCrawlerContainerKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getMetaCrawlerKey() {
|
||||||
|
return metaCrawlerKey;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaCrawlerKey(String metaCrawlerKey) {
|
||||||
|
this.metaCrawlerKey = metaCrawlerKey;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -6,4 +6,12 @@ import com.loafle.overflow.model.meta.MetaCollectionItem;
|
|||||||
|
|
||||||
public class SensorConfigItems {
|
public class SensorConfigItems {
|
||||||
private List<MetaCollectionItem> metaCollectionItems;
|
private List<MetaCollectionItem> metaCollectionItems;
|
||||||
}
|
|
||||||
|
public List<MetaCollectionItem> getMetaCollectionItems() {
|
||||||
|
return metaCollectionItems;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaCollectionItems(List<MetaCollectionItem> metaCollectionItems) {
|
||||||
|
this.metaCollectionItems = metaCollectionItems;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -2,4 +2,12 @@ package com.loafle.overflow.model.sensorconfig;
|
|||||||
|
|
||||||
public class SensorConfigSchedule {
|
public class SensorConfigSchedule {
|
||||||
private Integer interval;
|
private Integer interval;
|
||||||
}
|
|
||||||
|
public Integer getInterval() {
|
||||||
|
return interval;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setInterval(Integer interval) {
|
||||||
|
this.interval = interval;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user