public interface IEventCallback
Modifier and Type | Method and Description |
---|---|
void |
accept(java.lang.Object obj)
Sends the information with a message that the object is successfully added.
|
void |
accept(javax.xml.registry.infomodel.RegistryObject ro)
Sends the information that the registryObject is successfully added.
|
void |
accept(javax.xml.registry.infomodel.RegistryObject ro,
ExportException e)
Sends the information with a message that the registryObject is successfully added.
|
void |
accept(java.lang.String webdavDocument)
Sends the information that the repositoryObject is successfully copied.
|
void |
accept(java.lang.String webdavDocument,
ExportException e)
Sends the information with a message that the repositoryObject is successfully added.
|
void |
actionMsg(java.lang.String msg)
functions not yet used.
|
void |
end()
functions not yet used.
|
void |
error(ExportException e)
Sends error with message when error occurred during import/export.
|
void |
incStep()
functions not yet used.
|
void |
reject(java.lang.Object obj)
Sends the error that the object is rejected with an error-message.
|
void |
reject(javax.xml.registry.infomodel.RegistryObject ro,
ExportException e)
Sends the error that the registryObject is rejected with an error-message.
|
void |
reject(java.lang.String webdavDocument,
ExportException e)
Sends the error that the repositoryObject is rejected with an error-message.
|
void |
setSteps(int steps)
functions not yet used.
|
void |
start()
functions not yet used.
|
void |
stepMsg(java.lang.String msg)
functions not yet used.
|
void |
warning(java.lang.Object obj)
Sends the information that the object is processed with a warning.
|
void |
warning(javax.xml.registry.infomodel.RegistryObject ro,
ExportException e)
Sends the information that the registryObject is processed with a warning.
|
void |
warning(java.lang.String webdavDocument,
ExportException e)
Sends the information that the repositoryObject is processed with a warning.
|
void setSteps(int steps)
steps
- the number of steps.void start()
void end()
void incStep()
void actionMsg(java.lang.String msg)
msg
- the action message.void stepMsg(java.lang.String msg)
msg
- the step message.void accept(javax.xml.registry.infomodel.RegistryObject ro)
ro
- the registryObject.void accept(javax.xml.registry.infomodel.RegistryObject ro, ExportException e)
ro
- the registryObject.e
- the ExportException
object.void warning(javax.xml.registry.infomodel.RegistryObject ro, ExportException e)
ro
- registryObjecte
- the ExportException
object.void reject(javax.xml.registry.infomodel.RegistryObject ro, ExportException e)
ro
- registryObjecte
- the ExportException
object.void accept(java.lang.String webdavDocument)
webdavDocument
- the filename of webdavDocumentvoid accept(java.lang.String webdavDocument, ExportException e)
webdavDocument
- filename of webdavDocumente
- the ExportException
object.void warning(java.lang.String webdavDocument, ExportException e)
webdavDocument
- filename of webdavDocumente
- the ExportException
object.void reject(java.lang.String webdavDocument, ExportException e)
webdavDocument
- filename of webdavDocumente
- the ExportException
object.void error(ExportException e)
e
- the ExportException
object.void accept(java.lang.Object obj)
obj
- the message that the object is added.void warning(java.lang.Object obj)
obj
- the message that the object is warning.void reject(java.lang.Object obj)
obj
- the message that the object is rejected.