com.vmware.vim25.DiagnosticManagerLogDescriptor Maven / Gradle / Ivy
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.XmlType;
/**
* Java class for DiagnosticManagerLogDescriptor complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="DiagnosticManagerLogDescriptor">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="fileName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="creator" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="format" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="mimeType" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="info" type="{urn:vim25}Description"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DiagnosticManagerLogDescriptor", propOrder = {
"key",
"fileName",
"creator",
"format",
"mimeType",
"info"
})
public class DiagnosticManagerLogDescriptor
extends DynamicData
{
@XmlElement(required = true)
protected String key;
@XmlElement(required = true)
protected String fileName;
@XmlElement(required = true)
protected String creator;
@XmlElement(required = true)
protected String format;
@XmlElement(required = true)
protected String mimeType;
@XmlElement(required = true)
protected Description info;
/**
* Gets the value of the key property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getKey() {
return key;
}
/**
* Sets the value of the key property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setKey(String value) {
this.key = value;
}
/**
* Gets the value of the fileName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFileName() {
return fileName;
}
/**
* Sets the value of the fileName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFileName(String value) {
this.fileName = value;
}
/**
* Gets the value of the creator property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreator() {
return creator;
}
/**
* Sets the value of the creator property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreator(String value) {
this.creator = value;
}
/**
* Gets the value of the format property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFormat() {
return format;
}
/**
* Sets the value of the format property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFormat(String value) {
this.format = value;
}
/**
* Gets the value of the mimeType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMimeType() {
return mimeType;
}
/**
* Sets the value of the mimeType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMimeType(String value) {
this.mimeType = value;
}
/**
* Gets the value of the info property.
*
* @return
* possible object is
* {@link Description }
*
*/
public Description getInfo() {
return info;
}
/**
* Sets the value of the info property.
*
* @param value
* allowed object is
* {@link Description }
*
*/
public void setInfo(Description value) {
this.info = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy