servicesssssssss
This commit is contained in:
parent
09b58f1df7
commit
43e5ae565a
|
@ -0,0 +1,67 @@
|
||||||
|
package com.loafle.overflow.module.infra.service;
|
||||||
|
|
||||||
|
import com.loafle.overflow.module.infra.dao.*;
|
||||||
|
import com.loafle.overflow.module.infra.model.*;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by insanity on 17. 6. 28.
|
||||||
|
*/
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class InfraService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
InfraDAO infraDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraMachineDAO infraMachineDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraHostDAO infraHostDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraOSDAO infraOSDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraOSApplicationDAO infraOSApplicationDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraOSDaemonDAO infraOSDaemonDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraOSPortDAO infraOSPortDAO;
|
||||||
|
@Autowired
|
||||||
|
InfraServiceDAO infraServiceDAO;
|
||||||
|
|
||||||
|
|
||||||
|
public Infra regist(Infra infra) {
|
||||||
|
return this.infraDAO.save(infra);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InfraMachine registMachine(InfraMachine infraMachine) {
|
||||||
|
return this.infraMachineDAO.save(infraMachine);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InfraHost registHost(InfraHost infraHost) {
|
||||||
|
return this.infraHostDAO.save(infraHost);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InfraOS registOS(InfraOS infraOS) {
|
||||||
|
return this.infraOSDAO.save(infraOS);
|
||||||
|
}
|
||||||
|
public InfraOSApplication registOSApplication(InfraOSApplication infraOSApplication) {
|
||||||
|
return this.infraOSApplicationDAO.save(infraOSApplication);
|
||||||
|
}
|
||||||
|
public InfraOSDaemon registOSDaemon(InfraOSDaemon infraOSDaemon) {
|
||||||
|
return this.infraOSDaemonDAO.save(infraOSDaemon);
|
||||||
|
}
|
||||||
|
|
||||||
|
public InfraOSPort registOSPort(InfraOSPort infraOSPort) {
|
||||||
|
return this.infraOSPortDAO.save(infraOSPort);
|
||||||
|
}
|
||||||
|
|
||||||
|
public com.loafle.overflow.module.infra.model.InfraService registService(com.loafle.overflow.module.infra.model.InfraService infraService) {
|
||||||
|
return this.infraServiceDAO.save(infraService);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Infra read(String id) {
|
||||||
|
return this.infraDAO.findOne(Long.valueOf(id));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,15 +1,18 @@
|
||||||
package com.loafle.overflow.module.sensor.service;
|
package com.loafle.overflow.module.sensor.service;
|
||||||
|
|
||||||
|
import com.loafle.overflow.module.meta.model.MetaSensorStatus;
|
||||||
import com.loafle.overflow.module.sensor.dao.SensorDAO;
|
import com.loafle.overflow.module.sensor.dao.SensorDAO;
|
||||||
import com.loafle.overflow.module.sensor.model.Sensor;
|
import com.loafle.overflow.module.sensor.model.Sensor;
|
||||||
import com.loafle.overflow.module.target.model.Target;
|
import com.loafle.overflow.module.target.model.Target;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by insanity on 17. 6. 28.
|
* Created by insanity on 17. 6. 28.
|
||||||
*/
|
*/
|
||||||
|
@Service
|
||||||
public class SensorService {
|
public class SensorService {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
@ -30,4 +33,16 @@ public class SensorService {
|
||||||
public void remove(Sensor sensor) {
|
public void remove(Sensor sensor) {
|
||||||
this.sensorDAO.delete(sensor);
|
this.sensorDAO.delete(sensor);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Sensor start(Sensor sensor) {
|
||||||
|
MetaSensorStatus status = new MetaSensorStatus((short)1);
|
||||||
|
sensor.setStatus(status);
|
||||||
|
return this.sensorDAO.save(sensor);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Sensor stop(Sensor sensor) {
|
||||||
|
MetaSensorStatus status = new MetaSensorStatus((short)2);
|
||||||
|
sensor.setStatus(status);
|
||||||
|
return this.sensorDAO.save(sensor);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
package com.loafle.overflow.module.target.service;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by insanity on 17. 6. 28.
|
||||||
|
*/
|
||||||
|
public class TargetDiscoveryService {
|
||||||
|
|
||||||
|
}
|
|
@ -4,12 +4,14 @@ import com.loafle.overflow.module.probe.model.Probe;
|
||||||
import com.loafle.overflow.module.target.dao.TargetDAO;
|
import com.loafle.overflow.module.target.dao.TargetDAO;
|
||||||
import com.loafle.overflow.module.target.model.Target;
|
import com.loafle.overflow.module.target.model.Target;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Created by insanity on 17. 6. 28.
|
* Created by insanity on 17. 6. 28.
|
||||||
*/
|
*/
|
||||||
|
@Service
|
||||||
public class TargetService {
|
public class TargetService {
|
||||||
|
|
||||||
@Autowired
|
@Autowired
|
||||||
|
|
Loading…
Reference in New Issue
Block a user