public class EntityHistory
extends java.lang.Object
getUpdateHistory
about when and by whom an entity was modified.
Contains the following elements:
entityID
- The ID of the specific instance of the entity.entityTypeID
- The entity type ID. Can be found in the Innotas app on Admin > Web Services API.dateModified
- The date the entity was last modified.modifiedBy
- The Resource ID of the user who made the modification.
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Body>
<ns:getUpdateHistoryResponse xmlns:ns="http://services" xmlns:ax21="http://objects.services/xsd">
<ns:return xsi:type="ax21:EntityHistory" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ax21:dateModified>2014-02-06 15:49:34</ax21:dateModified>
<ax21:entityId>73418480</ax21:entityId>
<ax21:entityTypeId>4</ax21:entityTypeId>
<ax21:modifiedBy>8826911</ax21:modifiedBy>
</ns:return>
</ns:getUpdateHistoryResponse>
</soapenv:Body>
</soapenv:Envelope>
Constructor and Description |
---|
EntityHistory() |
EntityHistory(long pEntityId,
long pEntityTypeId) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDateModified() |
long |
getEntityId() |
long |
getEntityTypeId() |
long |
getModifiedBy() |
OMElement |
serialize(OMFactory fac) |
void |
setDateModified(java.lang.String pVal) |
void |
setEntityId(long pVal) |
void |
setEntityTypeId(long pVal) |
void |
setModifiedBy(long pVal) |
java.lang.String |
toString() |
public EntityHistory()
public EntityHistory(long pEntityId, long pEntityTypeId)
public void setEntityId(long pVal)
public long getEntityId()
public void setEntityTypeId(long pVal)
public long getEntityTypeId()
public void setDateModified(java.lang.String pVal)
public java.lang.String getDateModified()
public void setModifiedBy(long pVal)
public long getModifiedBy()
public OMElement serialize(OMFactory fac)
public java.lang.String toString()
toString
in class java.lang.Object