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

com.vmware.vim25.CryptoManagerKmipCertificateInfo Maven / Gradle / Ivy

There is a newer version: 0.6.60
Show newest version

package com.vmware.vim25;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for CryptoManagerKmipCertificateInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="CryptoManagerKmipCertificateInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="subject" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="issuer" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="serialNumber" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="notBefore" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="notAfter" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="fingerprint" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="checkTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="secondsSinceValid" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="secondsBeforeExpire" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "CryptoManagerKmipCertificateInfo", propOrder = { "subject", "issuer", "serialNumber", "notBefore", "notAfter", "fingerprint", "checkTime", "secondsSinceValid", "secondsBeforeExpire" }) public class CryptoManagerKmipCertificateInfo extends DynamicData { @XmlElement(required = true) protected String subject; @XmlElement(required = true) protected String issuer; @XmlElement(required = true) protected String serialNumber; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar notBefore; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar notAfter; @XmlElement(required = true) protected String fingerprint; @XmlElement(required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar checkTime; protected Integer secondsSinceValid; protected Integer secondsBeforeExpire; /** * Gets the value of the subject property. * * @return * possible object is * {@link String } * */ public String getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link String } * */ public void setSubject(String value) { this.subject = value; } /** * Gets the value of the issuer property. * * @return * possible object is * {@link String } * */ public String getIssuer() { return issuer; } /** * Sets the value of the issuer property. * * @param value * allowed object is * {@link String } * */ public void setIssuer(String value) { this.issuer = value; } /** * Gets the value of the serialNumber property. * * @return * possible object is * {@link String } * */ public String getSerialNumber() { return serialNumber; } /** * Sets the value of the serialNumber property. * * @param value * allowed object is * {@link String } * */ public void setSerialNumber(String value) { this.serialNumber = value; } /** * Gets the value of the notBefore property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNotBefore() { return notBefore; } /** * Sets the value of the notBefore property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNotBefore(XMLGregorianCalendar value) { this.notBefore = value; } /** * Gets the value of the notAfter property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getNotAfter() { return notAfter; } /** * Sets the value of the notAfter property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setNotAfter(XMLGregorianCalendar value) { this.notAfter = value; } /** * Gets the value of the fingerprint property. * * @return * possible object is * {@link String } * */ public String getFingerprint() { return fingerprint; } /** * Sets the value of the fingerprint property. * * @param value * allowed object is * {@link String } * */ public void setFingerprint(String value) { this.fingerprint = value; } /** * Gets the value of the checkTime property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getCheckTime() { return checkTime; } /** * Sets the value of the checkTime property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setCheckTime(XMLGregorianCalendar value) { this.checkTime = value; } /** * Gets the value of the secondsSinceValid property. * * @return * possible object is * {@link Integer } * */ public Integer getSecondsSinceValid() { return secondsSinceValid; } /** * Sets the value of the secondsSinceValid property. * * @param value * allowed object is * {@link Integer } * */ public void setSecondsSinceValid(Integer value) { this.secondsSinceValid = value; } /** * Gets the value of the secondsBeforeExpire property. * * @return * possible object is * {@link Integer } * */ public Integer getSecondsBeforeExpire() { return secondsBeforeExpire; } /** * Sets the value of the secondsBeforeExpire property. * * @param value * allowed object is * {@link Integer } * */ public void setSecondsBeforeExpire(Integer value) { this.secondsBeforeExpire = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy