org.glassfish.appclient.client.acc.config.Security Maven / Gradle / Ivy
//
// 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 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;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"ssl",
"certDb"
})
@XmlRootElement(name = "security")
public class Security {
@XmlElement(required = true)
protected Ssl ssl;
@XmlElement(name = "cert-db", required = true)
protected CertDb certDb;
/**
* Gets the value of the ssl property.
*
* @return
* possible object is
* {@link Ssl }
*
*/
public Ssl getSsl() {
return ssl;
}
/**
* Sets the value of the ssl property.
*
* @param value
* allowed object is
* {@link Ssl }
*
*/
public void setSsl(Ssl value) {
this.ssl = value;
}
/**
* Gets the value of the certDb property.
*
* @return
* possible object is
* {@link CertDb }
*
*/
public CertDb getCertDb() {
return certDb;
}
/**
* Sets the value of the certDb property.
*
* @param value
* allowed object is
* {@link CertDb }
*
*/
public void setCertDb(CertDb value) {
this.certDb = value;
}
}