
org.daisy.pipeline.webservice.jaxb.base.Alive Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.02.28 at 03:19:32 PM CET
//
package org.daisy.pipeline.webservice.jaxb.base;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="localfs" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="authentication" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="version" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "alive")
public class Alive {
@XmlAttribute(name = "localfs", required = true)
protected String localfs;
@XmlAttribute(name = "authentication", required = true)
protected String authentication;
@XmlAttribute(name = "version", required = true)
protected String version;
/**
* Gets the value of the localfs property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocalfs() {
return localfs;
}
/**
* Sets the value of the localfs property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocalfs(String value) {
this.localfs = value;
}
/**
* Gets the value of the authentication property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAuthentication() {
return authentication;
}
/**
* Sets the value of the authentication property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAuthentication(String value) {
this.authentication = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy