org.citrusframework.ftp.model.PutCommand 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",
"target"
})
@XmlRootElement(name = "put-command")
public class PutCommand
extends CommandType
{
@XmlElement(required = true)
protected PutCommand.File file;
protected PutCommand.Target target;
/**
* Ruft den Wert der file-Eigenschaft ab.
*
* @return
* possible object is
* {@link PutCommand.File }
*
*/
public PutCommand.File getFile() {
return file;
}
/**
* Legt den Wert der file-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PutCommand.File }
*
*/
public void setFile(PutCommand.File value) {
this.file = value;
}
/**
* Ruft den Wert der target-Eigenschaft ab.
*
* @return
* possible object is
* {@link PutCommand.Target }
*
*/
public PutCommand.Target getTarget() {
return target;
}
/**
* Legt den Wert der target-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link PutCommand.Target }
*
*/
public void setTarget(PutCommand.Target value) {
this.target = 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 = "")
public static class File {
@XmlAttribute(name = "path", required = true)
protected String path;
@XmlAttribute(name = "type")
protected String type;
/**
* 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;
}
/**
* Ruft den Wert der type-Eigenschaft ab.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
if (type == null) {
return "BINARY";
} else {
return type;
}
}
/**
* Legt den Wert der type-Eigenschaft fest.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = 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 = "")
public static class Target {
@XmlAttribute(name = "path", required = true)
protected String path;
/**
* 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;
}
}
}