
com.vmware.vim.VmConfigFileQuery Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vi-api Show documentation
Show all versions of vi-api Show documentation
This is a Java binding of the VMware Virtual Infrastructure SDK WSDL.
The newest version!
package com.vmware.vim;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for VmConfigFileQuery complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VmConfigFileQuery">
* <complexContent>
* <extension base="{urn:vim2}FileQuery">
* <sequence>
* <element name="filter" type="{urn:vim2}VmConfigFileQueryFilter" minOccurs="0"/>
* <element name="details" type="{urn:vim2}VmConfigFileQueryFlags" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VmConfigFileQuery", propOrder = {
"filter",
"details"
})
@XmlSeeAlso({
TemplateConfigFileQuery.class
})
public class VmConfigFileQuery
extends FileQuery
{
protected VmConfigFileQueryFilter filter;
protected VmConfigFileQueryFlags details;
/**
* Gets the value of the filter property.
*
* @return
* possible object is
* {@link VmConfigFileQueryFilter }
*
*/
public VmConfigFileQueryFilter getFilter() {
return filter;
}
/**
* Sets the value of the filter property.
*
* @param value
* allowed object is
* {@link VmConfigFileQueryFilter }
*
*/
public void setFilter(VmConfigFileQueryFilter value) {
this.filter = value;
}
/**
* Gets the value of the details property.
*
* @return
* possible object is
* {@link VmConfigFileQueryFlags }
*
*/
public VmConfigFileQueryFlags getDetails() {
return details;
}
/**
* Sets the value of the details property.
*
* @param value
* allowed object is
* {@link VmConfigFileQueryFlags }
*
*/
public void setDetails(VmConfigFileQueryFlags value) {
this.details = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy