com.vmware.pbm.PbmProfile Maven / Gradle / Ivy
package com.vmware.pbm;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import com.vmware.vim25.DynamicData;
/**
* Java class for PbmProfile complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="PbmProfile">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="profileId" type="{urn:pbm}PbmProfileId"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="creationTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="createdBy" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lastUpdatedTime" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="lastUpdatedBy" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "PbmProfile", propOrder = {
"profileId",
"name",
"description",
"creationTime",
"createdBy",
"lastUpdatedTime",
"lastUpdatedBy"
})
@XmlSeeAlso({
PbmCapabilityProfile.class
})
public class PbmProfile
extends DynamicData
{
@XmlElement(required = true)
protected PbmProfileId profileId;
@XmlElement(required = true)
protected String name;
protected String description;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar creationTime;
@XmlElement(required = true)
protected String createdBy;
@XmlElement(required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastUpdatedTime;
@XmlElement(required = true)
protected String lastUpdatedBy;
/**
* Gets the value of the profileId property.
*
* @return
* possible object is
* {@link PbmProfileId }
*
*/
public PbmProfileId getProfileId() {
return profileId;
}
/**
* Sets the value of the profileId property.
*
* @param value
* allowed object is
* {@link PbmProfileId }
*
*/
public void setProfileId(PbmProfileId value) {
this.profileId = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the creationTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCreationTime() {
return creationTime;
}
/**
* Sets the value of the creationTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCreationTime(XMLGregorianCalendar value) {
this.creationTime = value;
}
/**
* Gets the value of the createdBy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCreatedBy() {
return createdBy;
}
/**
* Sets the value of the createdBy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCreatedBy(String value) {
this.createdBy = value;
}
/**
* Gets the value of the lastUpdatedTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastUpdatedTime() {
return lastUpdatedTime;
}
/**
* Sets the value of the lastUpdatedTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastUpdatedTime(XMLGregorianCalendar value) {
this.lastUpdatedTime = value;
}
/**
* Gets the value of the lastUpdatedBy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastUpdatedBy() {
return lastUpdatedBy;
}
/**
* Sets the value of the lastUpdatedBy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastUpdatedBy(String value) {
this.lastUpdatedBy = value;
}
}