HTTPServices.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}HTTPServiceAdminAPI"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}HTTPServiceUserAPI"/&gt;
 *         &lt;element ref="{urn:com.io7m.idstore:configuration:1}HTTPServiceUserView"/&gt;
 *       &lt;/sequence&gt;
 *     &lt;/restriction&gt;
 *   &lt;/complexContent&gt;
 * &lt;/complexType&gt;
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "httpServiceAdminAPI",
    "httpServiceUserAPI",
    "httpServiceUserView"
})
@XmlRootElement(name = "HTTPServices")
public class HTTPServices {

    @XmlElement(name = "HTTPServiceAdminAPI", required = true)
    protected HTTPServiceType httpServiceAdminAPI;
    @XmlElement(name = "HTTPServiceUserAPI", required = true)
    protected HTTPServiceType httpServiceUserAPI;
    @XmlElement(name = "HTTPServiceUserView", required = true)
    protected HTTPServiceType httpServiceUserView;

    /**
     * Gets the value of the httpServiceAdminAPI property.
     * 
     * @return
     *     possible object is
     *     {@link HTTPServiceType }
     *     
     */
    public HTTPServiceType getHTTPServiceAdminAPI() {
        return httpServiceAdminAPI;
    }

    /**
     * Sets the value of the httpServiceAdminAPI property.
     * 
     * @param value
     *     allowed object is
     *     {@link HTTPServiceType }
     *     
     */
    public void setHTTPServiceAdminAPI(HTTPServiceType value) {
        this.httpServiceAdminAPI = value;
    }

    /**
     * Gets the value of the httpServiceUserAPI property.
     * 
     * @return
     *     possible object is
     *     {@link HTTPServiceType }
     *     
     */
    public HTTPServiceType getHTTPServiceUserAPI() {
        return httpServiceUserAPI;
    }

    /**
     * Sets the value of the httpServiceUserAPI property.
     * 
     * @param value
     *     allowed object is
     *     {@link HTTPServiceType }
     *     
     */
    public void setHTTPServiceUserAPI(HTTPServiceType value) {
        this.httpServiceUserAPI = value;
    }

    /**
     * Gets the value of the httpServiceUserView property.
     * 
     * @return
     *     possible object is
     *     {@link HTTPServiceType }
     *     
     */
    public HTTPServiceType getHTTPServiceUserView() {
        return httpServiceUserView;
    }

    /**
     * Sets the value of the httpServiceUserView property.
     * 
     * @param value
     *     allowed object is
     *     {@link HTTPServiceType }
     *     
     */
    public void setHTTPServiceUserView(HTTPServiceType value) {
        this.httpServiceUserView = value;
    }

}