package org.ourgrid.broker.controlws.gatewayws.client;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for wsioEntry complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="wsioEntry">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="command" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="destination" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="sourceFile" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "wsioEntry", propOrder = {
"command",
"destination",
"sourceFile"
})
public class WsioEntry {
protected String command;
protected String destination;
protected String sourceFile;
/**
* Gets the value of the command property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCommand() {
return command;
}
/**
* Sets the value of the command property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCommand(String value) {
this.command = value;
}
/**
* Gets the value of the destination property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDestination() {
return destination;
}
/**
* Sets the value of the destination property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDestination(String value) {
this.destination = value;
}
/**
* Gets the value of the sourceFile property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSourceFile() {
return sourceFile;
}
/**
* Sets the value of the sourceFile property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSourceFile(String value) {
this.sourceFile = value;
}
}