...
getProcessId()
Gets process ID (never null, see constants incom.noheto.restapi.ProcessID
)getServiceId()
Gets service ID (or null if no service is involved, see constants incom.noheto.restapi.ServiceId
)Collection<ProcessObject> getObjects()
Gets a list of all processed objects (including those in error or not found). To determine whether an object is in error, you can test whether it implementscom.noheto.restapi.ProcessObjectReject
.
Objects are not necessarily in the same processing order. The same object can only appear once.Collection<ProcessObject> getModifiedObjects()
Gets a list of all objects modified during processingCollection<ProcessObjectReject> getRejectedObjects()
Gets a list of all objects rejected during processingString getObjectType()
Gets the type of the object processed, or null, if several types are involvedCollection<String> getObjectTypes()
Gets all object types processedCTSurfer getSurfer()
Gets the surferMap<String,String> getAdditionalParameters()
Gets additional specific parameters (e.g. an API parameter)
...