Subversion Repositories XServices

Rev

Rev 10 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 10 Rev 12
Line 14... Line 14...
14
 *   limitations under the License.
14
 *   limitations under the License.
15
 */
15
 */
Line 16... Line 16...
16
 
16
 
Line -... Line 17...
-
 
17
package net.brutex.xservices.types;
17
package net.brutex.xservices.types;
18
 
18
 
19
import java.util.List;
19
import javax.xml.bind.annotation.XmlElement;
20
import javax.xml.bind.annotation.XmlElement;
Line 20... Line 21...
20
import javax.xml.bind.annotation.XmlType;
21
import javax.xml.bind.annotation.XmlType;
Line 53... Line 54...
53
     * value here ususally indicates that a failure has occured.
54
     * value here ususally indicates that a failure has occured.
54
     */
55
     */
55
    @XmlElement(name="stdErr", nillable=false)
56
    @XmlElement(name="stdErr", nillable=false)
56
    public String stdErr="";
57
    public String stdErr="";
Line -... Line 58...
-
 
58
 
-
 
59
 
-
 
60
    @XmlElement(name="propertyList", nillable=true)
-
 
61
    public List<AntProperty> property = null;
57
 
62
 
58
    /**
63
    /**
59
     * Create a new ReturnCode default constructor.
64
     * Create a new ReturnCode default constructor.
60
     */
65
     */
61
    public ReturnCode() {
66
    public ReturnCode() {
Line 66... Line 71...
66
     *
71
     *
67
     * @param returnCode    return code integer value
72
     * @param returnCode    return code integer value
68
     * @param stdOut        standard out string
73
     * @param stdOut        standard out string
69
     * @param stdErr        standard error string
74
     * @param stdErr        standard error string
70
     */
75
     */
71
    public ReturnCode(int returnCode, String stdOut, String stdErr) {
76
    public ReturnCode(int returnCode, String stdOut, String stdErr, List<AntProperty> props) {
72
        this.returnCode = returnCode;
77
        this.returnCode = returnCode;
73
        this.stdOut = stdOut;
78
        this.stdOut = stdOut;
74
        this.stdErr = stdErr;
79
        this.stdErr = stdErr;
-
 
80
        this.property = props;
75
    }
81
    }
76
}
82
}