org.xipki.ocsp.server.impl.jaxb.EmbedCertsMode Maven / Gradle / Ivy
The newest version!
package org.xipki.ocsp.server.impl.jaxb;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for embedCertsMode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="embedCertsMode">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="NONE"/>
* <enumeration value="SIGNER"/>
* <enumeration value="SIGNER_AND_CA"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "embedCertsMode")
@XmlEnum
public enum EmbedCertsMode {
NONE,
SIGNER,
SIGNER_AND_CA;
public String value() {
return name();
}
public static EmbedCertsMode fromValue(String v) {
return valueOf(v);
}
}