119 lines
3.2 KiB
Java
119 lines
3.2 KiB
Java
|
|
package com.sforce.soap.partner;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* This is a generated class for the SObject Enterprise API.
|
||
|
|
* Do not edit this file, as your changes will be lost.
|
||
|
|
*/
|
||
|
|
public interface IChangeEventHeader {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : entityName of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getEntityName();
|
||
|
|
|
||
|
|
public void setEntityName(java.lang.String entityName);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : recordIds of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getRecordIds();
|
||
|
|
|
||
|
|
public void setRecordIds(java.lang.String[] recordIds);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : commitTimestamp of type {http://www.w3.org/2001/XMLSchema}long
|
||
|
|
* java type: long
|
||
|
|
*/
|
||
|
|
|
||
|
|
public long getCommitTimestamp();
|
||
|
|
|
||
|
|
public void setCommitTimestamp(long commitTimestamp);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : commitNumber of type {http://www.w3.org/2001/XMLSchema}long
|
||
|
|
* java type: long
|
||
|
|
*/
|
||
|
|
|
||
|
|
public long getCommitNumber();
|
||
|
|
|
||
|
|
public void setCommitNumber(long commitNumber);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : commitUser of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getCommitUser();
|
||
|
|
|
||
|
|
public void setCommitUser(java.lang.String commitUser);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : diffFields of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getDiffFields();
|
||
|
|
|
||
|
|
public void setDiffFields(java.lang.String[] diffFields);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : changeType of type {urn:partner.soap.sforce.com}changeEventType
|
||
|
|
* java type: com.sforce.soap.partner.ChangeEventType
|
||
|
|
*/
|
||
|
|
|
||
|
|
public com.sforce.soap.partner.ChangeEventType getChangeType();
|
||
|
|
|
||
|
|
public void setChangeType(com.sforce.soap.partner.ChangeEventType changeType);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : changeOrigin of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getChangeOrigin();
|
||
|
|
|
||
|
|
public void setChangeOrigin(java.lang.String changeOrigin);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : transactionKey of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String getTransactionKey();
|
||
|
|
|
||
|
|
public void setTransactionKey(java.lang.String transactionKey);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : sequenceNumber of type {http://www.w3.org/2001/XMLSchema}int
|
||
|
|
* java type: int
|
||
|
|
*/
|
||
|
|
|
||
|
|
public int getSequenceNumber();
|
||
|
|
|
||
|
|
public void setSequenceNumber(int sequenceNumber);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : nulledFields of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getNulledFields();
|
||
|
|
|
||
|
|
public void setNulledFields(java.lang.String[] nulledFields);
|
||
|
|
|
||
|
|
/**
|
||
|
|
* element : changedFields of type {http://www.w3.org/2001/XMLSchema}string
|
||
|
|
* java type: java.lang.String[]
|
||
|
|
*/
|
||
|
|
|
||
|
|
public java.lang.String[] getChangedFields();
|
||
|
|
|
||
|
|
public void setChangedFields(java.lang.String[] changedFields);
|
||
|
|
|
||
|
|
|
||
|
|
}
|