![JAR search and dependency download from the Maven repository](/logo.png)
com.vmware.vim25.LocalizationManagerMessageCatalog Maven / Gradle / Ivy
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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for LocalizationManagerMessageCatalog complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LocalizationManagerMessageCatalog">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="moduleName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="catalogName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="locale" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="catalogUri" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="lastModified" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="md5sum" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LocalizationManagerMessageCatalog", propOrder = {
"moduleName",
"catalogName",
"locale",
"catalogUri",
"lastModified",
"md5Sum",
"version"
})
public class LocalizationManagerMessageCatalog
extends DynamicData
{
@XmlElement(required = true)
protected String moduleName;
@XmlElement(required = true)
protected String catalogName;
@XmlElement(required = true)
protected String locale;
@XmlElement(required = true)
protected String catalogUri;
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar lastModified;
@XmlElement(name = "md5sum")
protected String md5Sum;
protected String version;
/**
* Gets the value of the moduleName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getModuleName() {
return moduleName;
}
/**
* Sets the value of the moduleName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setModuleName(String value) {
this.moduleName = value;
}
/**
* Gets the value of the catalogName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCatalogName() {
return catalogName;
}
/**
* Sets the value of the catalogName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCatalogName(String value) {
this.catalogName = value;
}
/**
* Gets the value of the locale property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLocale() {
return locale;
}
/**
* Sets the value of the locale property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLocale(String value) {
this.locale = value;
}
/**
* Gets the value of the catalogUri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCatalogUri() {
return catalogUri;
}
/**
* Sets the value of the catalogUri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCatalogUri(String value) {
this.catalogUri = value;
}
/**
* Gets the value of the lastModified property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getLastModified() {
return lastModified;
}
/**
* Sets the value of the lastModified property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setLastModified(XMLGregorianCalendar value) {
this.lastModified = value;
}
/**
* Gets the value of the md5Sum property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMd5Sum() {
return md5Sum;
}
/**
* Sets the value of the md5Sum property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMd5Sum(String value) {
this.md5Sum = value;
}
/**
* Gets the value of the version property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersion() {
return version;
}
/**
* Sets the value of the version property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersion(String value) {
this.version = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy