ing
This commit is contained in:
parent
ae7472b608
commit
dff9759722
2
pom.xml
2
pom.xml
|
@ -13,7 +13,7 @@
|
|||
<groupId>com.loafle.overflow</groupId>
|
||||
<artifactId>commons-java</artifactId>
|
||||
<packaging>jar</packaging>
|
||||
<version>1.0.43-SNAPSHOT</version>
|
||||
<version>1.0.44-SNAPSHOT</version>
|
||||
<name>com.loafle.overflow.commons-java</name>
|
||||
|
||||
<properties>
|
||||
|
|
|
@ -17,7 +17,7 @@ public class NoAuthProbe {
|
|||
private Domain domain;
|
||||
private Probe probe;
|
||||
private MetaNoAuthProbeStatus metaNoAuthProbeStatus;
|
||||
private String description;
|
||||
private String infraHostMeta;
|
||||
private String tempProbeKey;
|
||||
private String apiKey;
|
||||
private Date connectDate;
|
||||
|
@ -34,13 +34,13 @@ public class NoAuthProbe {
|
|||
this.id = id;
|
||||
}
|
||||
|
||||
@Column(name = "DESCRIPTION", nullable = true, length = 1000)
|
||||
public String getDescription() {
|
||||
return description;
|
||||
@Column(name = "INFRA_HOST_META", nullable = true, length = 1000)
|
||||
public String getInfraHostMeta() {
|
||||
return infraHostMeta;
|
||||
}
|
||||
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
public void setInfraHostMeta(String infraHostMeta) {
|
||||
this.infraHostMeta = infraHostMeta;
|
||||
}
|
||||
|
||||
@ManyToOne
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
package com.loafle.overflow.model.noauthprobe;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import com.loafle.overflow.model.infra.InfraHost;
|
||||
import com.loafle.overflow.model.infra.InfraZone;
|
||||
|
||||
/**
|
||||
* NoAuthProbeDescription
|
||||
*/
|
||||
public class NoAuthProbeDescription {
|
||||
private InfraHost infraHost;
|
||||
private List<InfraZone> infraZones;
|
||||
|
||||
/**
|
||||
* @return the infraHost
|
||||
*/
|
||||
public InfraHost getInfraHost() {
|
||||
return infraHost;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param infraHost the infraHost to set
|
||||
*/
|
||||
public void setInfraHost(InfraHost infraHost) {
|
||||
this.infraHost = infraHost;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the infraZones
|
||||
*/
|
||||
public List<InfraZone> getInfraZones() {
|
||||
return infraZones;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param infraZones the infraZones to set
|
||||
*/
|
||||
public void setInfraZones(List<InfraZone> infraZones) {
|
||||
this.infraZones = infraZones;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user