org.glassfish.appclient.client.acc.config.Ssl 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.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "ssl")
public class Ssl {
@XmlAttribute(name = "cert-nickname")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String certNickname;
@XmlAttribute(name = "ssl3-tls-ciphers")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String ssl3TlsCiphers;
@XmlAttribute(name = "tls-rollback-enabled")
@XmlJavaTypeAdapter(Adapter4 .class)
protected Boolean tlsRollbackEnabled;
/**
* Gets the value of the certNickname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCertNickname() {
return certNickname;
}
/**
* Sets the value of the certNickname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCertNickname(String value) {
this.certNickname = value;
}
/**
* Gets the value of the ssl3TlsCiphers property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSsl3TlsCiphers() {
return ssl3TlsCiphers;
}
/**
* Sets the value of the ssl3TlsCiphers property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSsl3TlsCiphers(String value) {
this.ssl3TlsCiphers = value;
}
/**
* Gets the value of the tlsRollbackEnabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean isTlsRollbackEnabled() {
if (tlsRollbackEnabled == null) {
return new Adapter4().unmarshal("true");
} else {
return tlsRollbackEnabled;
}
}
/**
* Sets the value of the tlsRollbackEnabled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTlsRollbackEnabled(Boolean value) {
this.tlsRollbackEnabled = value;
}
}