com.vmware.vim25.CustomizationCustomIpGenerator Maven / Gradle / Ivy
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 CustomizationCustomIpGenerator complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomizationCustomIpGenerator">
* <complexContent>
* <extension base="{urn:vim25}CustomizationIpGenerator">
* <sequence>
* <element name="argument" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomizationCustomIpGenerator", propOrder = {
"argument"
})
public class CustomizationCustomIpGenerator
extends CustomizationIpGenerator
{
protected String argument;
/**
* Gets the value of the argument property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getArgument() {
return argument;
}
/**
* Sets the value of the argument property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setArgument(String value) {
this.argument = value;
}
}