org.citrusframework.ftp.model.GetCommandResult Maven / Gradle / Ivy
//
// Diese Datei wurde mit der Eclipse Implementation of JAXB, v4.0.5 generiert
// Siehe https://eclipse-ee4j.github.io/jaxb-ri
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
//
package org.citrusframework.ftp.model;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java-Klasse für anonymous complex type.
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* {@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"file"
})
@XmlRootElement(name = "get-command-result")
public class GetCommandResult
extends CommandResultType
{
@XmlElement(required = true)
protected GetCommandResult.File file;
/**
* Ruft den Wert der file-Eigenschaft ab.
*
* @return
* possible object is
* {@link GetCommandResult.File }
*
*/
public GetCommandResult.File getFile() {
return file;
}
/**
* Legt den Wert der file-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link GetCommandResult.File }
*
*/
public void setFile(GetCommandResult.File value) {
this.file = value;
}
/**
* Java-Klasse für anonymous complex type.
*
* Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
*
* {@code
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"data"
})
public static class File {
protected String data;
@XmlAttribute(name = "path", required = true)
protected String path;
/**
* Ruft den Wert der data-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getData() {
return data;
}
/**
* Legt den Wert der data-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setData(String value) {
this.data = value;
}
/**
* Ruft den Wert der path-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPath() {
return path;
}
/**
* Legt den Wert der path-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPath(String value) {
this.path = value;
}
}
}