Package iofXml.v3
Class BaseMessageElement
-
- All Implemented Interfaces:
public abstract class BaseMessageElement
The base message element that all message elements extend.
Java class for BaseMessageElement complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="BaseMessageElement"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <attribute name="iofVersion" use="required" type="{http://www.w3.org/2001/XMLSchema}string" fixed="3.0" /> <attribute name="createTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" /> <attribute name="creator" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description BaseMessageElement()
-
Method Summary
Modifier and Type Method Description String
getIofVersion()
The version of the IOF Interface Standard that the file conforms to. void
setIofVersion(String value)
Sets the value of the iofVersion property. XMLGregorianCalendar
getCreateTime()
The time when the file was created. void
setCreateTime(XMLGregorianCalendar value)
Sets the value of the createTime property. String
getCreator()
The name of the software that created the file. void
setCreator(String value)
Sets the value of the creator property. -
-
Method Detail
-
getIofVersion
String getIofVersion()
The version of the IOF Interface Standard that the file conforms to.
- Returns:
possibleobject is String
-
setIofVersion
void setIofVersion(String value)
Sets the value of the iofVersion property.
- Parameters:
value
- allowed object is String
-
getCreateTime
XMLGregorianCalendar getCreateTime()
The time when the file was created.
- Returns:
possibleobject is XMLGregorianCalendar
-
setCreateTime
void setCreateTime(XMLGregorianCalendar value)
Sets the value of the createTime property.
- Parameters:
value
- allowed object is XMLGregorianCalendar
-
getCreator
String getCreator()
The name of the software that created the file.
- Returns:
possibleobject is String
-
setCreator
void setCreator(String value)
Sets the value of the creator property.
- Parameters:
value
- allowed object is String
-
-
-
-