mirror of https://github.com/apache/nifi.git
NIFI-3643: - Addressing incorrect capitalization in VersionInfoDTO in NiFiVersion.
This closes #1626. Signed-off-by: Bryan Bende <bbende@apache.org>
This commit is contained in:
parent
f15e0d8e1e
commit
4432958a65
|
@ -580,7 +580,7 @@ public class SystemDiagnosticsSnapshotDTO implements Cloneable {
|
|||
@XmlType(name = "versionInfo")
|
||||
public static class VersionInfoDTO implements Cloneable {
|
||||
|
||||
private String nifiVersion;
|
||||
private String niFiVersion;
|
||||
private String javaVendor;
|
||||
private String javaVersion;
|
||||
private String osName;
|
||||
|
@ -593,11 +593,11 @@ public class SystemDiagnosticsSnapshotDTO implements Cloneable {
|
|||
|
||||
@ApiModelProperty("The version of this NiFi.")
|
||||
public String getNiFiVersion() {
|
||||
return nifiVersion;
|
||||
return niFiVersion;
|
||||
}
|
||||
|
||||
public void setNiFiVersion(String nifiVersion) {
|
||||
this.nifiVersion = nifiVersion;
|
||||
public void setNiFiVersion(String niFiVersion) {
|
||||
this.niFiVersion = niFiVersion;
|
||||
}
|
||||
|
||||
@ApiModelProperty("Java JVM vendor")
|
||||
|
|
Loading…
Reference in New Issue