org.appng.appngizer.model.xml.Database Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.07.28 at 12:11:00 PM CEST
//
package org.appng.appngizer.model.xml;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
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>
* <extension base="{http://www.appng.org/schema/appngizer}linkable">
* <sequence>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="dbVersion" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="driver" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="ok" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="versions" type="{http://www.appng.org/schema/appngizer}versions" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}int" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"type",
"user",
"password",
"dbVersion",
"driver",
"url",
"ok",
"versions"
})
@XmlRootElement(name = "database")
public class Database
extends Linkable
{
@XmlElement(required = true)
protected String type;
@XmlElement(required = true)
protected String user;
@XmlElement(required = true)
protected String password;
@XmlElement(required = true)
protected String dbVersion;
@XmlElement(required = true)
protected String driver;
@XmlElement(required = true)
protected String url;
protected boolean ok;
protected Versions versions;
@XmlAttribute(name = "id")
protected Integer id;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the user property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUser() {
return user;
}
/**
* Sets the value of the user property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUser(String value) {
this.user = value;
}
/**
* Gets the value of the password property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getPassword() {
return password;
}
/**
* Sets the value of the password property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setPassword(String value) {
this.password = value;
}
/**
* Gets the value of the dbVersion property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDbVersion() {
return dbVersion;
}
/**
* Sets the value of the dbVersion property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDbVersion(String value) {
this.dbVersion = value;
}
/**
* Gets the value of the driver property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDriver() {
return driver;
}
/**
* Sets the value of the driver property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDriver(String value) {
this.driver = value;
}
/**
* Gets the value of the url property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getUrl() {
return url;
}
/**
* Sets the value of the url property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setUrl(String value) {
this.url = value;
}
/**
* Gets the value of the ok property.
*
*/
public boolean isOk() {
return ok;
}
/**
* Sets the value of the ok property.
*
*/
public void setOk(boolean value) {
this.ok = value;
}
/**
* Gets the value of the versions property.
*
* @return
* possible object is
* {@link Versions }
*
*/
public Versions getVersions() {
return versions;
}
/**
* Sets the value of the versions property.
*
* @param value
* allowed object is
* {@link Versions }
*
*/
public void setVersions(Versions value) {
this.versions = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setId(Integer value) {
this.id = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy