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 AddSecretResult complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="AddSecretResult">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Errors" type="{urn:thesecretserver.com}ArrayOfString" minOccurs="0"/>
* <element name="Secret" type="{urn:thesecretserver.com}Secret" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AddSecretResult", propOrder = {
"errors",
"secret"
})
public class AddSecretResult {
@XmlElement(name = "Errors")
protected ArrayOfString errors;
@XmlElement(name = "Secret")
protected Secret secret;
/**
* 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 secret property.
*
* @return
* possible object is
* {@link Secret }
*
*/
public Secret getSecret() {
return secret;
}
/**
* Sets the value of the secret property.
*
* @param value
* allowed object is
* {@link Secret }
*
*/
public void setSecret(Secret value) {
this.secret = value;
}
}