ColorScheme.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>
 * &lt;complexType&gt;
 *   &lt;complexContent&gt;
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
 *       &lt;sequence&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}ButtonColors"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}ErrorBorderColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}HeaderBackgroundColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}HeaderLinkColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}HeaderTextColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}MainBackgroundColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}MainLinkColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}MainMessageBorderColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}MainTableBorderColor"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}MainTextColor"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "buttonColors",
    "errorBorderColor",
    "headerBackgroundColor",
    "headerLinkColor",
    "headerTextColor",
    "mainBackgroundColor",
    "mainLinkColor",
    "mainMessageBorderColor",
    "mainTableBorderColor",
    "mainTextColor"
})
@XmlRootElement(name = "ColorScheme")
public class ColorScheme {

    @XmlElement(name = "ButtonColors", required = true)
    protected ButtonColors buttonColors;
    @XmlElement(name = "ErrorBorderColor", required = true)
    protected ColorType errorBorderColor;
    @XmlElement(name = "HeaderBackgroundColor", required = true)
    protected ColorType headerBackgroundColor;
    @XmlElement(name = "HeaderLinkColor", required = true)
    protected ColorType headerLinkColor;
    @XmlElement(name = "HeaderTextColor", required = true)
    protected ColorType headerTextColor;
    @XmlElement(name = "MainBackgroundColor", required = true)
    protected ColorType mainBackgroundColor;
    @XmlElement(name = "MainLinkColor", required = true)
    protected ColorType mainLinkColor;
    @XmlElement(name = "MainMessageBorderColor", required = true)
    protected ColorType mainMessageBorderColor;
    @XmlElement(name = "MainTableBorderColor", required = true)
    protected ColorType mainTableBorderColor;
    @XmlElement(name = "MainTextColor", required = true)
    protected ColorType mainTextColor;

    /**
     * Gets the value of the buttonColors property.
     * 
     * @return
     *     possible object is
     *     {@link ButtonColors }
     *     
     */
    public ButtonColors getButtonColors() {
        return buttonColors;
    }

    /**
     * Sets the value of the buttonColors property.
     * 
     * @param value
     *     allowed object is
     *     {@link ButtonColors }
     *     
     */
    public void setButtonColors(ButtonColors value) {
        this.buttonColors = value;
    }

    /**
     * Gets the value of the errorBorderColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getErrorBorderColor() {
        return errorBorderColor;
    }

    /**
     * Sets the value of the errorBorderColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setErrorBorderColor(ColorType value) {
        this.errorBorderColor = value;
    }

    /**
     * Gets the value of the headerBackgroundColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getHeaderBackgroundColor() {
        return headerBackgroundColor;
    }

    /**
     * Sets the value of the headerBackgroundColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setHeaderBackgroundColor(ColorType value) {
        this.headerBackgroundColor = value;
    }

    /**
     * Gets the value of the headerLinkColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getHeaderLinkColor() {
        return headerLinkColor;
    }

    /**
     * Sets the value of the headerLinkColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setHeaderLinkColor(ColorType value) {
        this.headerLinkColor = value;
    }

    /**
     * Gets the value of the headerTextColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getHeaderTextColor() {
        return headerTextColor;
    }

    /**
     * Sets the value of the headerTextColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setHeaderTextColor(ColorType value) {
        this.headerTextColor = value;
    }

    /**
     * Gets the value of the mainBackgroundColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getMainBackgroundColor() {
        return mainBackgroundColor;
    }

    /**
     * Sets the value of the mainBackgroundColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setMainBackgroundColor(ColorType value) {
        this.mainBackgroundColor = value;
    }

    /**
     * Gets the value of the mainLinkColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getMainLinkColor() {
        return mainLinkColor;
    }

    /**
     * Sets the value of the mainLinkColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setMainLinkColor(ColorType value) {
        this.mainLinkColor = value;
    }

    /**
     * Gets the value of the mainMessageBorderColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getMainMessageBorderColor() {
        return mainMessageBorderColor;
    }

    /**
     * Sets the value of the mainMessageBorderColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setMainMessageBorderColor(ColorType value) {
        this.mainMessageBorderColor = value;
    }

    /**
     * Gets the value of the mainTableBorderColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getMainTableBorderColor() {
        return mainTableBorderColor;
    }

    /**
     * Sets the value of the mainTableBorderColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setMainTableBorderColor(ColorType value) {
        this.mainTableBorderColor = value;
    }

    /**
     * Gets the value of the mainTextColor property.
     * 
     * @return
     *     possible object is
     *     {@link ColorType }
     *     
     */
    public ColorType getMainTextColor() {
        return mainTextColor;
    }

    /**
     * Sets the value of the mainTextColor property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorType }
     *     
     */
    public void setMainTextColor(ColorType value) {
        this.mainTextColor = value;
    }

}