Package com.consol.citrus.ftp.model
Class PutCommand
- java.lang.Object
-
- com.consol.citrus.ftp.model.CommandType
-
- com.consol.citrus.ftp.model.PutCommand
-
public class PutCommand extends CommandType
Java-Klasse für anonymous complex type.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<complexType> <complexContent> <extension base="{http://www.citrusframework.org/schema/ftp/message}commandType"> <sequence> <element name="file"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="type" default="BINARY"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ASCII"/> <enumeration value="BINARY"/> <enumeration value="EBCDIC"/> <enumeration value="LOCAL"/> </restriction> </simpleType> </attribute> </restriction> </complexContent> </complexType> </element> <element name="target" minOccurs="0"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType> </element> </sequence> </extension> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classPutCommand.FileJava-Klasse für anonymous complex type.static classPutCommand.TargetJava-Klasse für anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected PutCommand.Filefileprotected PutCommand.Targettarget-
Fields inherited from class com.consol.citrus.ftp.model.CommandType
arguments, signal
-
-
Constructor Summary
Constructors Constructor Description PutCommand()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PutCommand.FilegetFile()Ruft den Wert der file-Eigenschaft ab.PutCommand.TargetgetTarget()Ruft den Wert der target-Eigenschaft ab.voidsetFile(PutCommand.File value)Legt den Wert der file-Eigenschaft fest.voidsetTarget(PutCommand.Target value)Legt den Wert der target-Eigenschaft fest.-
Methods inherited from class com.consol.citrus.ftp.model.CommandType
getArguments, getSignal, setArguments, setSignal
-
-
-
-
Field Detail
-
file
protected PutCommand.File file
-
target
protected PutCommand.Target target
-
-
Method Detail
-
getFile
public PutCommand.File getFile()
Ruft den Wert der file-Eigenschaft ab.- Returns:
- possible object is
PutCommand.File
-
setFile
public void setFile(PutCommand.File value)
Legt den Wert der file-Eigenschaft fest.- Parameters:
value- allowed object isPutCommand.File
-
getTarget
public PutCommand.Target getTarget()
Ruft den Wert der target-Eigenschaft ab.- Returns:
- possible object is
PutCommand.Target
-
setTarget
public void setTarget(PutCommand.Target value)
Legt den Wert der target-Eigenschaft fest.- Parameters:
value- allowed object isPutCommand.Target
-
-