arranging
This commit is contained in:
parent
0df9c1185d
commit
86b3b06e5f
|
@ -1,15 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.module.crawler.model.Crawler;
|
||||
//import org.springframework.data.jpa.repository.JpaRepository;
|
||||
//import org.springframework.stereotype.Repository;
|
||||
//
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@Repository
|
||||
//public interface CrawlerDAO extends JpaRepository<Crawler, Long> {
|
||||
//// public List<Crawler> findAll();
|
||||
//}
|
|
@ -1,12 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.module.crawler.model.CrawlerInputItem;
|
||||
//import org.springframework.data.jpa.repository.JpaRepository;
|
||||
//import org.springframework.stereotype.Repository;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@Repository
|
||||
//public interface CrawlerInputItemDAO extends JpaRepository<CrawlerInputItem, Long> {
|
||||
//}
|
|
@ -1,15 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.module.crawler.model.CrawlerInputItemMapping;
|
||||
//import org.springframework.data.jpa.repository.JpaRepository;
|
||||
//import org.springframework.stereotype.Repository;
|
||||
//
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@Repository
|
||||
//public interface CrawlerInputItemMappingDAO extends JpaRepository<CrawlerInputItemMapping, Long> {
|
||||
//// public List<CrawlerInputItemMapping> findByCrawlerId(Crawler crawler);
|
||||
//}
|
|
@ -1,27 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.commons.dao.JPABaseDAO;
|
||||
//import com.loafle.overflow.module.crawler.model.Crawler;
|
||||
//
|
||||
//import javax.persistence.Query;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//public class JPACrawlerDAO extends JPABaseDAO<Crawler> implements CrawlerDAO {
|
||||
// @Override
|
||||
// public List<Crawler> findAll() {
|
||||
// Query query = getEntityManager().createNativeQuery("SELECT c.* FROM CRAWLER c ", Crawler.class);
|
||||
//
|
||||
// List<Crawler> crs = null;
|
||||
//
|
||||
// try {
|
||||
// crs = (List<Crawler>)query.getResultList();
|
||||
// } catch (Exception e) {
|
||||
// e.printStackTrace();
|
||||
// } finally {
|
||||
// return crs;
|
||||
// }
|
||||
// }
|
||||
//}
|
|
@ -1,10 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.commons.dao.JPABaseDAO;
|
||||
//import com.loafle.overflow.module.crawler.model.CrawlerInputItem;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//public class JPACrawlerInputItemDAO extends JPABaseDAO<CrawlerInputItem> implements CrawlerInputItemDAO {
|
||||
//}
|
|
@ -1,29 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.dao;//package com.loafle.overflow.module.crawler.dao;
|
||||
//
|
||||
//import com.loafle.overflow.commons.dao.JPABaseDAO;
|
||||
//import com.loafle.overflow.module.crawler.model.Crawler;
|
||||
//import com.loafle.overflow.module.crawler.model.CrawlerInputItemMapping;
|
||||
//
|
||||
//import javax.persistence.Query;
|
||||
//import java.util.List;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//public class JPACrawlerInputItemMappingDAO extends JPABaseDAO<CrawlerInputItemMapping> implements CrawlerInputItemMappingDAO {
|
||||
// @Override
|
||||
// public List<CrawlerInputItemMapping> findByCrawlerId(Crawler crawler) {
|
||||
// Query query = getEntityManager().createNativeQuery("SELECT m.* FROM CRAWLER_INPUT_ITEM_MAPPING m WHERE m.crawler_id = :crawler_id", CrawlerInputItemMapping.class);
|
||||
// query.setParameter("crawler_id", crawler.getId());
|
||||
//
|
||||
// List<CrawlerInputItemMapping> crs = null;
|
||||
//
|
||||
// try {
|
||||
// crs = (List<CrawlerInputItemMapping>)query.getResultList();
|
||||
// } catch (Exception e) {
|
||||
// e.printStackTrace();
|
||||
// } finally {
|
||||
// return crs;
|
||||
// }
|
||||
// }
|
||||
//}
|
|
@ -1,76 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.model;//package com.loafle.overflow.module.crawler.model;
|
||||
//
|
||||
//import javax.persistence.*;
|
||||
//import java.io.Serializable;
|
||||
//import java.util.Date;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@SuppressWarnings("serial")
|
||||
////@Entity(name="CRAWLER")
|
||||
//public class Crawler implements Serializable {
|
||||
//
|
||||
// @Id
|
||||
// @GeneratedValue(strategy= GenerationType.IDENTITY)
|
||||
// private Long id;
|
||||
//
|
||||
// @Column(name="NAME", nullable=false)
|
||||
// private String name;
|
||||
//
|
||||
// @Column(name="DESCRIPTION")
|
||||
// private String description;
|
||||
//
|
||||
// @Column(name="CRAWLER_TYPE")
|
||||
// private String crawlerType;
|
||||
//
|
||||
// @Column(name = "CREATE_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false)
|
||||
// private Date createDate;
|
||||
//
|
||||
// public Crawler() {
|
||||
// }
|
||||
//
|
||||
// public Crawler(Long id) {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public Long getId() {
|
||||
// return id;
|
||||
// }
|
||||
//
|
||||
// public void setId(Long id) {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public String getName() {
|
||||
// return name;
|
||||
// }
|
||||
//
|
||||
// public void setName(String name) {
|
||||
// this.name = name;
|
||||
// }
|
||||
//
|
||||
// public String getDescription() {
|
||||
// return description;
|
||||
// }
|
||||
//
|
||||
// public void setDescription(String description) {
|
||||
// this.description = description;
|
||||
// }
|
||||
//
|
||||
// public String getCrawlerType() {
|
||||
// return crawlerType;
|
||||
// }
|
||||
//
|
||||
// public void setCrawlerType(String crawlerType) {
|
||||
// this.crawlerType = crawlerType;
|
||||
// }
|
||||
//
|
||||
// public Date getCreateDate() {
|
||||
// return createDate;
|
||||
// }
|
||||
//
|
||||
// public void setCreateDate(Date createDate) {
|
||||
// this.createDate = createDate;
|
||||
// }
|
||||
//}
|
|
@ -1,75 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.model;//package com.loafle.overflow.module.crawler.model;
|
||||
//
|
||||
//import javax.persistence.*;
|
||||
//import java.io.Serializable;
|
||||
//import java.util.Date;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@SuppressWarnings("serial")
|
||||
////@Entity(name="CRAWLER_INPUT_ITEM")
|
||||
//public class CrawlerInputItem implements Serializable {
|
||||
// @Id
|
||||
// @GeneratedValue(strategy= GenerationType.IDENTITY)
|
||||
// private Long id;
|
||||
//
|
||||
// @Column(name = "NAME")
|
||||
// private String name;
|
||||
//
|
||||
// @Column(name = "DESCRIPTION")
|
||||
// private String description;
|
||||
//
|
||||
// @Column(name = "DATA_TYPE")
|
||||
// private String dataType;
|
||||
//
|
||||
// @Column(name = "CREATE_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false)
|
||||
// private Date createDate;
|
||||
//
|
||||
//
|
||||
// public CrawlerInputItem(){}
|
||||
//
|
||||
// public CrawlerInputItem(Long id) {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public Long getId() {
|
||||
// return id;
|
||||
// }
|
||||
//
|
||||
// public void setId(Long id) {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public String getName() {
|
||||
// return name;
|
||||
// }
|
||||
//
|
||||
// public void setName(String name) {
|
||||
// this.name = name;
|
||||
// }
|
||||
//
|
||||
// public String getDescription() {
|
||||
// return description;
|
||||
// }
|
||||
//
|
||||
// public void setDescription(String description) {
|
||||
// this.description = description;
|
||||
// }
|
||||
//
|
||||
// public String getDataType() {
|
||||
// return dataType;
|
||||
// }
|
||||
//
|
||||
// public void setDataType(String dataType) {
|
||||
// this.dataType = dataType;
|
||||
// }
|
||||
//
|
||||
// public Date getCreateDate() {
|
||||
// return createDate;
|
||||
// }
|
||||
//
|
||||
// public void setCreateDate(Date createDate) {
|
||||
// this.createDate = createDate;
|
||||
// }
|
||||
//}
|
|
@ -1,86 +0,0 @@
|
|||
package com.loafle.overflow.module.crawler.model;//package com.loafle.overflow.module.crawler.model;
|
||||
//
|
||||
//import javax.persistence.*;
|
||||
//import java.io.Serializable;
|
||||
//import java.util.Date;
|
||||
//
|
||||
///**
|
||||
// * Created by geek@loafle.com on 17. 6. 8.
|
||||
// */
|
||||
//@SuppressWarnings("serial")
|
||||
////@Entity(name="CRAWLER_INPUT_ITEM_MAPPING")
|
||||
//public class CrawlerInputItemMapping implements Serializable {
|
||||
// @Id
|
||||
// @GeneratedValue(strategy= GenerationType.IDENTITY)
|
||||
// private Long id;
|
||||
//
|
||||
// @ManyToOne
|
||||
// @JoinColumn(name = "CRAWLER_ID", nullable=false)
|
||||
// private Crawler crawler;
|
||||
//
|
||||
// @ManyToOne
|
||||
// @JoinColumn(name = "CRAWLER_INPUT_ITEM_ID", nullable=false)
|
||||
// private CrawlerInputItem crawlerInputItem;
|
||||
//
|
||||
// @Column(name = "PRIORITY")
|
||||
// private short priority;
|
||||
//
|
||||
// @Column(name = "REQUIRED_TYPE")
|
||||
// private boolean requiredType;
|
||||
//
|
||||
// @Column(name = "CREATE_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false)
|
||||
// private Date createDate;
|
||||
//
|
||||
// public CrawlerInputItemMapping(){}
|
||||
// public CrawlerInputItemMapping(Long id){
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public Long getId() {
|
||||
// return id;
|
||||
// }
|
||||
//
|
||||
// public void setId(Long id) {
|
||||
// this.id = id;
|
||||
// }
|
||||
//
|
||||
// public Crawler getCrawler() {
|
||||
// return crawler;
|
||||
// }
|
||||
//
|
||||
// public void setCrawler(Crawler crawler) {
|
||||
// this.crawler = crawler;
|
||||
// }
|
||||
//
|
||||
// public CrawlerInputItem getCrawlerInputItem() {
|
||||
// return crawlerInputItem;
|
||||
// }
|
||||
//
|
||||
// public void setCrawlerInputItem(CrawlerInputItem crawlerInputItem) {
|
||||
// this.crawlerInputItem = crawlerInputItem;
|
||||
// }
|
||||
//
|
||||
// public short getPriority() {
|
||||
// return priority;
|
||||
// }
|
||||
//
|
||||
// public void setPriority(short priority) {
|
||||
// this.priority = priority;
|
||||
// }
|
||||
//
|
||||
// public boolean isRequiredType() {
|
||||
// return requiredType;
|
||||
// }
|
||||
//
|
||||
// public void setRequiredType(boolean requiredType) {
|
||||
// this.requiredType = requiredType;
|
||||
// }
|
||||
//
|
||||
// public Date getCreateDate() {
|
||||
// return createDate;
|
||||
// }
|
||||
//
|
||||
// public void setCreateDate(Date createDate) {
|
||||
// this.createDate = createDate;
|
||||
// }
|
||||
//}
|
|
@ -0,0 +1,35 @@
|
|||
package com.loafle.overflow.module.sensor.service;
|
||||
|
||||
import com.loafle.overflow.module.sensor.dao.SensorItemDAO;
|
||||
import com.loafle.overflow.module.sensor.model.Sensor;
|
||||
import com.loafle.overflow.module.sensor.model.SensorItem;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* Created by insanity on 17. 6. 28.
|
||||
*/
|
||||
@Service
|
||||
public class SensorItemService {
|
||||
|
||||
@Autowired
|
||||
private SensorItemDAO sensorItemDAO;
|
||||
|
||||
public SensorItem regist(SensorItem sensorItem) {
|
||||
return this.sensorItemDAO.save(sensorItem);
|
||||
}
|
||||
|
||||
public SensorItem read(String id) {
|
||||
return this.sensorItemDAO.findOne(Long.valueOf(id));
|
||||
}
|
||||
|
||||
public List<SensorItem> readAllBySensor(Sensor sensor) {
|
||||
return this.sensorItemDAO.findAllBySensor(sensor);
|
||||
}
|
||||
|
||||
public void remove(SensorItem sensorItem) {
|
||||
this.sensorItemDAO.delete(sensorItem);
|
||||
}
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
package com.loafle.overflow.module.target.service;
|
||||
|
||||
/**
|
||||
* Created by insanity on 17. 6. 28.
|
||||
*/
|
||||
public class TargetDiscoveryService {
|
||||
|
||||
}
|
|
@ -32,23 +32,4 @@ public class UiWebsocket {
|
|||
this.createDate = createDate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object o) {
|
||||
if (this == o) return true;
|
||||
if (o == null || getClass() != o.getClass()) return false;
|
||||
|
||||
UiWebsocket that = (UiWebsocket) o;
|
||||
|
||||
if (id != that.id) return false;
|
||||
if (createDate != null ? !createDate.equals(that.createDate) : that.createDate != null) return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int result = (int) (id ^ (id >>> 32));
|
||||
result = 31 * result + (createDate != null ? createDate.hashCode() : 0);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user