Configuration.java
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2023.06.29 at 10:16:21 PM GMT
//
package com.io7m.idstore.server.service.configuration.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for anonymous complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:com.io7m.idstore:configuration:1}Branding"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Database"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}HTTPServices"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}History"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Mail"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}OpenTelemetry" minOccurs="0"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}PasswordExpiration" minOccurs="0"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}RateLimiting"/>
* <element ref="{urn:com.io7m.idstore:configuration:1}Sessions"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"branding",
"database",
"httpServices",
"history",
"mail",
"openTelemetry",
"passwordExpiration",
"rateLimiting",
"sessions"
})
@XmlRootElement(name = "Configuration")
public class Configuration {
@XmlElement(name = "Branding", required = true)
protected Branding branding;
@XmlElement(name = "Database", required = true)
protected Database database;
@XmlElement(name = "HTTPServices", required = true)
protected HTTPServices httpServices;
@XmlElement(name = "History", required = true)
protected History history;
@XmlElement(name = "Mail", required = true)
protected Mail mail;
@XmlElement(name = "OpenTelemetry")
protected OpenTelemetry openTelemetry;
@XmlElement(name = "PasswordExpiration")
protected PasswordExpiration passwordExpiration;
@XmlElement(name = "RateLimiting", required = true)
protected RateLimiting rateLimiting;
@XmlElement(name = "Sessions", required = true)
protected Sessions sessions;
/**
* Gets the value of the branding property.
*
* @return
* possible object is
* {@link Branding }
*
*/
public Branding getBranding() {
return branding;
}
/**
* Sets the value of the branding property.
*
* @param value
* allowed object is
* {@link Branding }
*
*/
public void setBranding(Branding value) {
this.branding = value;
}
/**
* Gets the value of the database property.
*
* @return
* possible object is
* {@link Database }
*
*/
public Database getDatabase() {
return database;
}
/**
* Sets the value of the database property.
*
* @param value
* allowed object is
* {@link Database }
*
*/
public void setDatabase(Database value) {
this.database = value;
}
/**
* Gets the value of the httpServices property.
*
* @return
* possible object is
* {@link HTTPServices }
*
*/
public HTTPServices getHTTPServices() {
return httpServices;
}
/**
* Sets the value of the httpServices property.
*
* @param value
* allowed object is
* {@link HTTPServices }
*
*/
public void setHTTPServices(HTTPServices value) {
this.httpServices = value;
}
/**
* Gets the value of the history property.
*
* @return
* possible object is
* {@link History }
*
*/
public History getHistory() {
return history;
}
/**
* Sets the value of the history property.
*
* @param value
* allowed object is
* {@link History }
*
*/
public void setHistory(History value) {
this.history = value;
}
/**
* Gets the value of the mail property.
*
* @return
* possible object is
* {@link Mail }
*
*/
public Mail getMail() {
return mail;
}
/**
* Sets the value of the mail property.
*
* @param value
* allowed object is
* {@link Mail }
*
*/
public void setMail(Mail value) {
this.mail = value;
}
/**
* Gets the value of the openTelemetry property.
*
* @return
* possible object is
* {@link OpenTelemetry }
*
*/
public OpenTelemetry getOpenTelemetry() {
return openTelemetry;
}
/**
* Sets the value of the openTelemetry property.
*
* @param value
* allowed object is
* {@link OpenTelemetry }
*
*/
public void setOpenTelemetry(OpenTelemetry value) {
this.openTelemetry = value;
}
/**
* Gets the value of the passwordExpiration property.
*
* @return
* possible object is
* {@link PasswordExpiration }
*
*/
public PasswordExpiration getPasswordExpiration() {
return passwordExpiration;
}
/**
* Sets the value of the passwordExpiration property.
*
* @param value
* allowed object is
* {@link PasswordExpiration }
*
*/
public void setPasswordExpiration(PasswordExpiration value) {
this.passwordExpiration = value;
}
/**
* Gets the value of the rateLimiting property.
*
* @return
* possible object is
* {@link RateLimiting }
*
*/
public RateLimiting getRateLimiting() {
return rateLimiting;
}
/**
* Sets the value of the rateLimiting property.
*
* @param value
* allowed object is
* {@link RateLimiting }
*
*/
public void setRateLimiting(RateLimiting value) {
this.rateLimiting = value;
}
/**
* Gets the value of the sessions property.
*
* @return
* possible object is
* {@link Sessions }
*
*/
public Sessions getSessions() {
return sessions;
}
/**
* Sets the value of the sessions property.
*
* @param value
* allowed object is
* {@link Sessions }
*
*/
public void setSessions(Sessions value) {
this.sessions = value;
}
}