de.dagere.kopeme.generated.Versioninfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kopeme-core Show documentation
Show all versions of kopeme-core Show documentation
KoPeMe performance testing core
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v2.3.7 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2024.12.22 um 12:44:41 PM CET
//
package de.dagere.kopeme.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java-Klasse für versioninfo complex type.
*
*
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
*
* <complexType name="versioninfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="gitversion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="committer" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="time" type="{http://www.w3.org/2001/XMLSchema}long"/>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "versioninfo", propOrder = {
"gitversion",
"committer",
"time"
})
public class Versioninfo {
protected String gitversion;
protected String committer;
protected Long time;
/**
* Ruft den Wert der gitversion-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getGitversion() {
return gitversion;
}
/**
* Legt den Wert der gitversion-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setGitversion(String value) {
this.gitversion = value;
}
/**
* Ruft den Wert der committer-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCommitter() {
return committer;
}
/**
* Legt den Wert der committer-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCommitter(String value) {
this.committer = value;
}
/**
* Ruft den Wert der time-Eigenschaft ab.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getTime() {
return time;
}
/**
* Legt den Wert der time-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setTime(Long value) {
this.time = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy