package com.thesecretserver.service;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* <p>Java class for GetDependenciesResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="GetDependenciesResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Dependencies" type="{urn:thesecretserver.com}ArrayOfDependency" minOccurs="0"/>
* <element name="Errors" type="{urn:thesecretserver.com}ArrayOfString" minOccurs="0"/>
* <element name="Success" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "GetDependenciesResult", propOrder = {
"dependencies",
"errors",
"success"
})
public class GetDependenciesResult {
@XmlElement(name = "Dependencies")
protected ArrayOfDependency dependencies;
@XmlElement(name = "Errors")
protected ArrayOfString errors;
@XmlElement(name = "Success")
protected boolean success;
/**
* Gets the value of the dependencies property.
*
* @return
* possible object is
* {@link ArrayOfDependency }
*
*/
public ArrayOfDependency getDependencies() {
return dependencies;
}
/**
* Sets the value of the dependencies property.
*
* @param value
* allowed object is
* {@link ArrayOfDependency }
*
*/
public void setDependencies(ArrayOfDependency value) {
this.dependencies = value;
}
/**
* Gets the value of the errors property.
*
* @return
* possible object is
* {@link ArrayOfString }
*
*/
public ArrayOfString getErrors() {
return errors;
}
/**
* Sets the value of the errors property.
*
* @param value
* allowed object is
* {@link ArrayOfString }
*
*/
public void setErrors(ArrayOfString value) {
this.errors = value;
}
/**
* Gets the value of the success property.
*
*/
public boolean isSuccess() {
return success;
}
/**
* Sets the value of the success property.
*
*/
public void setSuccess(boolean value) {
this.success = value;
}
}