This commit is contained in:
crusader 2018-06-12 12:54:25 +09:00
parent ae7472b608
commit dff9759722
3 changed files with 7 additions and 50 deletions

View File

@ -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.43-SNAPSHOT</version> <version>1.0.44-SNAPSHOT</version>
<name>com.loafle.overflow.commons-java</name> <name>com.loafle.overflow.commons-java</name>
<properties> <properties>

View File

@ -17,7 +17,7 @@ public class NoAuthProbe {
private Domain domain; private Domain domain;
private Probe probe; private Probe probe;
private MetaNoAuthProbeStatus metaNoAuthProbeStatus; private MetaNoAuthProbeStatus metaNoAuthProbeStatus;
private String description; private String infraHostMeta;
private String tempProbeKey; private String tempProbeKey;
private String apiKey; private String apiKey;
private Date connectDate; private Date connectDate;
@ -34,13 +34,13 @@ public class NoAuthProbe {
this.id = id; this.id = id;
} }
@Column(name = "DESCRIPTION", nullable = true, length = 1000) @Column(name = "INFRA_HOST_META", nullable = true, length = 1000)
public String getDescription() { public String getInfraHostMeta() {
return description; return infraHostMeta;
} }
public void setDescription(String description) { public void setInfraHostMeta(String infraHostMeta) {
this.description = description; this.infraHostMeta = infraHostMeta;
} }
@ManyToOne @ManyToOne

View File

@ -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;
}
}