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

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

The 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.XmlType;


/**
 * 

Java class for GuestAuthAliasInfo complex type. * *

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

 * <complexType name="GuestAuthAliasInfo">
 *   <complexContent>
 *     <extension base="{urn:vim25}DynamicData">
 *       <sequence>
 *         <element name="subject" type="{urn:vim25}GuestAuthSubject"/>
 *         <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GuestAuthAliasInfo", propOrder = { "subject", "comment" }) public class GuestAuthAliasInfo extends DynamicData { @XmlElement(required = true) protected GuestAuthSubject subject; @XmlElement(required = true) protected String comment; /** * Gets the value of the subject property. * * @return * possible object is * {@link GuestAuthSubject } * */ public GuestAuthSubject getSubject() { return subject; } /** * Sets the value of the subject property. * * @param value * allowed object is * {@link GuestAuthSubject } * */ public void setSubject(GuestAuthSubject value) { this.subject = value; } /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy