org.glassfish.appclient.client.acc.config.Ssl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of payara-micro Show documentation
Show all versions of payara-micro Show documentation
Micro Distribution of the Payara Project for IBM JDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2017.08.07 at 01:06:59 PM BST
//
package org.glassfish.appclient.client.acc.config;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.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 = "ssl2-enabled")
@XmlJavaTypeAdapter(Adapter4 .class)
protected Boolean ssl2Enabled;
@XmlAttribute(name = "ssl2-ciphers")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String ssl2Ciphers;
@XmlAttribute(name = "ssl3-enabled")
@XmlJavaTypeAdapter(Adapter5 .class)
protected Boolean ssl3Enabled;
@XmlAttribute(name = "ssl3-tls-ciphers")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
protected String ssl3TlsCiphers;
@XmlAttribute(name = "tls-enabled")
@XmlJavaTypeAdapter(Adapter6 .class)
protected Boolean tlsEnabled;
@XmlAttribute(name = "tls-rollback-enabled")
@XmlJavaTypeAdapter(Adapter7 .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 ssl2Enabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean isSsl2Enabled() {
if (ssl2Enabled == null) {
return new Adapter4().unmarshal("false");
} else {
return ssl2Enabled;
}
}
/**
* Sets the value of the ssl2Enabled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSsl2Enabled(Boolean value) {
this.ssl2Enabled = value;
}
/**
* Gets the value of the ssl2Ciphers property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSsl2Ciphers() {
return ssl2Ciphers;
}
/**
* Sets the value of the ssl2Ciphers property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSsl2Ciphers(String value) {
this.ssl2Ciphers = value;
}
/**
* Gets the value of the ssl3Enabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean isSsl3Enabled() {
if (ssl3Enabled == null) {
return new Adapter5().unmarshal("true");
} else {
return ssl3Enabled;
}
}
/**
* Sets the value of the ssl3Enabled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSsl3Enabled(Boolean value) {
this.ssl3Enabled = 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 tlsEnabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean isTlsEnabled() {
if (tlsEnabled == null) {
return new Adapter6().unmarshal("true");
} else {
return tlsEnabled;
}
}
/**
* Sets the value of the tlsEnabled property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTlsEnabled(Boolean value) {
this.tlsEnabled = value;
}
/**
* Gets the value of the tlsRollbackEnabled property.
*
* @return
* possible object is
* {@link String }
*
*/
public boolean isTlsRollbackEnabled() {
if (tlsRollbackEnabled == null) {
return new Adapter7().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;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy