This commit is contained in:
crusader 2018-05-17 21:36:25 +09:00
parent faa819e538
commit fc3560404d
3 changed files with 198 additions and 0 deletions

View File

@ -0,0 +1,35 @@
package com.loafle.overflow.model.noauthprobe;
/**
* NoAuthProbeDescription
*/
public class NoAuthProbeDescription {
private NoAuthProbeDescriptionHost host;
private NoAuthProbeDescriptionNetwork network;
/**
* @return the host
*/
public NoAuthProbeDescriptionHost getHost() {
return host;
}
/**
* @param host the host to set
*/
public void setHost(NoAuthProbeDescriptionHost host) {
this.host = host;
}
/**
* @return the network
*/
public NoAuthProbeDescriptionNetwork getNetwork() {
return network;
}
/**
* @param network the network to set
*/
public void setNetwork(NoAuthProbeDescriptionNetwork network) {
this.network = network;
}
}

View File

@ -0,0 +1,102 @@
package com.loafle.overflow.model.noauthprobe;
import org.codehaus.jackson.annotate.JsonProperty;
/**
* NoAuthProbeDescriptionHost
*/
public class NoAuthProbeDescriptionHost {
private String name;
private String os;
private String platform;
private String platformFamily;
private String platformVersion;
private String kernelVersion;
private String hostID;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the os
*/
@JsonProperty("os")
public String getOS() {
return os;
}
/**
* @param os the os to set
*/
@JsonProperty("os")
public void setOS(String os) {
this.os = os;
}
/**
* @return the platform
*/
public String getPlatform() {
return platform;
}
/**
* @param platform the platform to set
*/
public void setPlatform(String platform) {
this.platform = platform;
}
/**
* @return the platformFamily
*/
public String getPlatformFamily() {
return platformFamily;
}
/**
* @param platformFamily the platformFamily to set
*/
public void setPlatformFamily(String platformFamily) {
this.platformFamily = platformFamily;
}
/**
* @return the platformVersion
*/
public String getPlatformVersion() {
return platformVersion;
}
/**
* @param platformVersion the platformVersion to set
*/
public void setPlatformVersion(String platformVersion) {
this.platformVersion = platformVersion;
}
/**
* @return the kernelVersion
*/
public String getKernelVersion() {
return kernelVersion;
}
/**
* @param kernelVersion the kernelVersion to set
*/
public void setKernelVersion(String kernelVersion) {
this.kernelVersion = kernelVersion;
}
/**
* @return the hostID
*/
public String getHostID() {
return hostID;
}
/**
* @param hostID the hostID to set
*/
public void setHostID(String hostID) {
this.hostID = hostID;
}
}

View File

@ -0,0 +1,61 @@
package com.loafle.overflow.model.noauthprobe;
/**
* NoAuthProbeDescriptionNetwork
*/
public class NoAuthProbeDescriptionNetwork {
private String name;
private String address;
private String gateway;
private String macAddress;
/**
* @return the name
*/
public String getName() {
return name;
}
/**
* @param name the name to set
*/
public void setName(String name) {
this.name = name;
}
/**
* @return the address
*/
public String getAddress() {
return address;
}
/**
* @param address the address to set
*/
public void setAddress(String address) {
this.address = address;
}
/**
* @return the gateway
*/
public String getGateway() {
return gateway;
}
/**
* @param gateway the gateway to set
*/
public void setGateway(String gateway) {
this.gateway = gateway;
}
/**
* @return the macAddress
*/
public String getMacAddress() {
return macAddress;
}
/**
* @param macAddress the macAddress to set
*/
public void setMacAddress(String macAddress) {
this.macAddress = macAddress;
}
}