ing
This commit is contained in:
parent
805ce3195a
commit
6176dd0062
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
||||||
<groupId>com.loafle.overflow</groupId>
|
<groupId>com.loafle.overflow</groupId>
|
||||||
<artifactId>commons-java</artifactId>
|
<artifactId>commons-java</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.0.53-SNAPSHOT</version>
|
<version>1.0.54-SNAPSHOT</version>
|
||||||
<name>com.loafle.overflow.commons-java</name>
|
<name>com.loafle.overflow.commons-java</name>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
package com.loafle.overflow.model.meta;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
import javax.persistence.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by snoop on 18. 4. 24.
|
||||||
|
*/
|
||||||
|
@Entity
|
||||||
|
@Table(name = "META_TARGET_HOST_TYPE_MAPPING", schema = "public")
|
||||||
|
public class MetaTargetHostTypeMapping {
|
||||||
|
|
||||||
|
private Long id;
|
||||||
|
private MetaTargetHostType metaTargetHostType;
|
||||||
|
private String pattern;
|
||||||
|
private Date createDate;
|
||||||
|
|
||||||
|
@Id
|
||||||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||||||
|
public Long getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(Long id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
@ManyToOne
|
||||||
|
@JoinColumn(name = "META_TARGET_HOST_TYPE_ID", nullable = false)
|
||||||
|
public MetaTargetHostType getMetaTargetHostType() {
|
||||||
|
return metaTargetHostType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMetaTargetHostType(MetaTargetHostType metaTargetHostType) {
|
||||||
|
this.metaTargetHostType = metaTargetHostType;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Column(name = "PATTERN", nullable = false, length = 50)
|
||||||
|
public String getPattern() {
|
||||||
|
return pattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPattern(String pattern) {
|
||||||
|
this.pattern = pattern;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Temporal(TemporalType.TIMESTAMP)
|
||||||
|
@Column(name = "CREATE_DATE", nullable = false, columnDefinition = "TIMESTAMP DEFAULT CURRENT_TIMESTAMP", insertable = false, updatable = false)
|
||||||
|
public Date getCreateDate() {
|
||||||
|
return createDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCreateDate(Date createDate) {
|
||||||
|
this.createDate = createDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -17,7 +17,6 @@ public class Probe {
|
||||||
private Long id;
|
private Long id;
|
||||||
private MetaProbeStatus metaProbeStatus;
|
private MetaProbeStatus metaProbeStatus;
|
||||||
private String description;
|
private String description;
|
||||||
private Date createDate;
|
|
||||||
private Domain domain;
|
private Domain domain;
|
||||||
private String probeKey;
|
private String probeKey;
|
||||||
private String encryptionKey;
|
private String encryptionKey;
|
||||||
|
@ -28,6 +27,7 @@ public class Probe {
|
||||||
private Integer targetCount;
|
private Integer targetCount;
|
||||||
private Date connectDate;
|
private Date connectDate;
|
||||||
private String connectAddress;
|
private String connectAddress;
|
||||||
|
private Date createDate;
|
||||||
|
|
||||||
public Probe() {
|
public Probe() {
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,7 @@ import com.loafle.overflow.model.discovery.Service;
|
||||||
import com.loafle.overflow.model.discovery.Zone;
|
import com.loafle.overflow.model.discovery.Zone;
|
||||||
import com.loafle.overflow.model.infra.Infra;
|
import com.loafle.overflow.model.infra.Infra;
|
||||||
import com.loafle.overflow.model.infra.InfraHost;
|
import com.loafle.overflow.model.infra.InfraHost;
|
||||||
|
import com.loafle.overflow.model.infra.InfraHostIP;
|
||||||
import com.loafle.overflow.model.infra.InfraZone;
|
import com.loafle.overflow.model.infra.InfraZone;
|
||||||
|
|
||||||
import org.springframework.data.domain.Page;
|
import org.springframework.data.domain.Page;
|
||||||
|
@ -23,17 +24,24 @@ public interface InfraService {
|
||||||
Infra regist(Infra infra) throws OverflowException;
|
Infra regist(Infra infra) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
InfraZone registZone(Long probeID, Zone zone) throws OverflowException;
|
InfraZone registByZone(Long probeID, Zone zone) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
InfraHost registHost(Long probeID, Host host) throws OverflowException;
|
InfraHost registByHost(Long probeID, Host host) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
com.loafle.overflow.model.infra.InfraService registService(Long probeID, Service service) throws OverflowException;
|
com.loafle.overflow.model.infra.InfraService registByService(Long probeID, Service service) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
List<Infra> registDiscoverd(Long probeID, List<Host> hosts, List<Service> services) throws OverflowException;
|
List<Infra> registDiscoverd(Long probeID, List<Host> hosts, List<Service> services) throws OverflowException;
|
||||||
|
|
||||||
|
|
||||||
|
@WebappAPI
|
||||||
|
InfraZone registInfraZoneByInfraHostIP(Long probeID, InfraHostIP infraHostIP) throws OverflowException;
|
||||||
|
|
||||||
|
@WebappAPI
|
||||||
|
InfraHost registInfraHostByInfraHost(Long probeID, InfraHost infraHost) throws OverflowException;
|
||||||
|
|
||||||
@WebappAPI
|
@WebappAPI
|
||||||
Infra read(Long id) throws OverflowException;
|
Infra read(Long id) throws OverflowException;
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
package com.loafle.overflow.service.central.meta;
|
||||||
|
|
||||||
|
import com.loafle.overflow.core.annotation.WebappAPI;
|
||||||
|
import com.loafle.overflow.core.exception.OverflowException;
|
||||||
|
import com.loafle.overflow.model.meta.MetaTargetHostTypeMapping;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by snoop on 17. 7. 27.
|
||||||
|
*/
|
||||||
|
public interface MetaTargetHostTypeMappingService {
|
||||||
|
|
||||||
|
@WebappAPI
|
||||||
|
List<MetaTargetHostTypeMapping> readAll() throws OverflowException;
|
||||||
|
|
||||||
|
@WebappAPI
|
||||||
|
List<MetaTargetHostTypeMapping> readAllByPattern(String pattern) throws OverflowException;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user