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

com.vmware.vim25.HostPatchManagerPatchManagerOperationSpec 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.XmlType;


/**
 * 

Java class for HostPatchManagerPatchManagerOperationSpec complex type. * *

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

 * <complexType name="HostPatchManagerPatchManagerOperationSpec">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="proxy" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="port" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="userName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="cmdOption" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HostPatchManagerPatchManagerOperationSpec", propOrder = { "proxy", "port", "userName", "password", "cmdOption" }) public class HostPatchManagerPatchManagerOperationSpec extends DynamicData { protected String proxy; protected Integer port; protected String userName; protected String password; protected String cmdOption; /** * Gets the value of the proxy property. * * @return * possible object is * {@link String } * */ public String getProxy() { return proxy; } /** * Sets the value of the proxy property. * * @param value * allowed object is * {@link String } * */ public void setProxy(String value) { this.proxy = value; } /** * Gets the value of the port property. * * @return * possible object is * {@link Integer } * */ public Integer getPort() { return port; } /** * Sets the value of the port property. * * @param value * allowed object is * {@link Integer } * */ public void setPort(Integer value) { this.port = value; } /** * Gets the value of the userName property. * * @return * possible object is * {@link String } * */ public String getUserName() { return userName; } /** * Sets the value of the userName property. * * @param value * allowed object is * {@link String } * */ public void setUserName(String value) { this.userName = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Gets the value of the cmdOption property. * * @return * possible object is * {@link String } * */ public String getCmdOption() { return cmdOption; } /** * Sets the value of the cmdOption property. * * @param value * allowed object is * {@link String } * */ public void setCmdOption(String value) { this.cmdOption = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy