All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.glassfish.appclient.client.acc.config.ClientContainer Maven / Gradle / Ivy

There is a newer version: 6.2024.6
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.1 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package org.glassfish.appclient.client.acc.config;

import java.util.ArrayList;
import java.util.List;
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.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "targetServer",
    "authRealm",
    "clientCredential",
    "logService",
    "messageSecurityConfig",
    "property"
})
@XmlRootElement(name = "client-container")
public class ClientContainer {

    @XmlAttribute(name = "send-password")
    @XmlJavaTypeAdapter(Adapter1 .class)
    protected Boolean sendPassword;
    @XmlElement(name = "target-server", required = true)
    protected List targetServer;
    @XmlElement(name = "auth-realm")
    protected AuthRealm authRealm;
    @XmlElement(name = "client-credential")
    protected ClientCredential clientCredential;
    @XmlElement(name = "log-service")
    protected LogService logService;
    @XmlElement(name = "message-security-config")
    protected List messageSecurityConfig;
    protected List property;

    /**
     * Gets the value of the sendPassword property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public boolean isSendPassword() {
        if (sendPassword == null) {
            return new Adapter1().unmarshal("true");
        } else {
            return sendPassword;
        }
    }

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

    /**
     * Gets the value of the targetServer property.
     * 
     * 

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the targetServer property. * *

* For example, to add a new item, do as follows: *

     *    getTargetServer().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TargetServer } * * * @return * The value of the targetServer property. */ public List getTargetServer() { if (targetServer == null) { targetServer = new ArrayList<>(); } return this.targetServer; } /** * Gets the value of the authRealm property. * * @return * possible object is * {@link AuthRealm } * */ public AuthRealm getAuthRealm() { return authRealm; } /** * Sets the value of the authRealm property. * * @param value * allowed object is * {@link AuthRealm } * */ public void setAuthRealm(AuthRealm value) { this.authRealm = value; } /** * Gets the value of the clientCredential property. * * @return * possible object is * {@link ClientCredential } * */ public ClientCredential getClientCredential() { return clientCredential; } /** * Sets the value of the clientCredential property. * * @param value * allowed object is * {@link ClientCredential } * */ public void setClientCredential(ClientCredential value) { this.clientCredential = value; } /** * Gets the value of the logService property. * * @return * possible object is * {@link LogService } * */ public LogService getLogService() { return logService; } /** * Sets the value of the logService property. * * @param value * allowed object is * {@link LogService } * */ public void setLogService(LogService value) { this.logService = value; } /** * Gets the value of the messageSecurityConfig property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the messageSecurityConfig property. * *

* For example, to add a new item, do as follows: *

     *    getMessageSecurityConfig().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link MessageSecurityConfig } * * * @return * The value of the messageSecurityConfig property. */ public List getMessageSecurityConfig() { if (messageSecurityConfig == null) { messageSecurityConfig = new ArrayList<>(); } return this.messageSecurityConfig; } /** * Gets the value of the property property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a {@code set} method for the property property. * *

* For example, to add a new item, do as follows: *

     *    getProperty().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Property } * * * @return * The value of the property property. */ public List getProperty() { if (property == null) { property = new ArrayList<>(); } return this.property; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy