Branding.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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
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}ColorScheme" minOccurs="0"/&gt;
 *       &lt;/sequence&gt;
 *       &lt;attribute name="ProductTitle" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /&gt;
 *       &lt;attribute name="Logo" type="{http://www.w3.org/2001/XMLSchema}anyURI" /&gt;
 *       &lt;attribute name="LoginExtra" type="{http://www.w3.org/2001/XMLSchema}anyURI" /&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "colorScheme"
})
@XmlRootElement(name = "Branding")
public class Branding {

    @XmlElement(name = "ColorScheme")
    protected ColorScheme colorScheme;
    @XmlAttribute(name = "ProductTitle", required = true)
    protected String productTitle;
    @XmlAttribute(name = "Logo")
    @XmlSchemaType(name = "anyURI")
    protected String logo;
    @XmlAttribute(name = "LoginExtra")
    @XmlSchemaType(name = "anyURI")
    protected String loginExtra;

    /**
     * Gets the value of the colorScheme property.
     * 
     * @return
     *     possible object is
     *     {@link ColorScheme }
     *     
     */
    public ColorScheme getColorScheme() {
        return colorScheme;
    }

    /**
     * Sets the value of the colorScheme property.
     * 
     * @param value
     *     allowed object is
     *     {@link ColorScheme }
     *     
     */
    public void setColorScheme(ColorScheme value) {
        this.colorScheme = value;
    }

    /**
     * Gets the value of the productTitle property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getProductTitle() {
        return productTitle;
    }

    /**
     * Sets the value of the productTitle property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setProductTitle(String value) {
        this.productTitle = value;
    }

    /**
     * Gets the value of the logo property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getLogo() {
        return logo;
    }

    /**
     * Sets the value of the logo property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setLogo(String value) {
        this.logo = value;
    }

    /**
     * Gets the value of the loginExtra property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getLoginExtra() {
        return loginExtra;
    }

    /**
     * Sets the value of the loginExtra property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setLoginExtra(String value) {
        this.loginExtra = value;
    }

}