|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CentraSiteExportFilterInterface
Abstract interface class for export filters. Provides default implementations for all methods; thus the interface can easily be extended without existing implementations having to be modified. The filter may reject the complete export operation by throwing a CentraSiteFilterException. In order to issue a warning, the event callback passed by CentraSiteFilterInterface.init() may be called.
Method Summary | |
---|---|
void |
modify(java.util.Collection registryObjects)
Deprecated. Possibly modify the registry objects of the given collection. |
void |
modify(javax.xml.registry.infomodel.RegistryObject registryObject)
Deprecated. Possibly modify the given registry object. |
void |
validate(java.util.Collection registryObjects)
Deprecated. Validate the given collection of registry objects. |
void |
validate(javax.xml.registry.infomodel.RegistryObject registryObject)
Deprecated. Validate the given registry object. |
Methods inherited from interface com.centrasite.jaxr.filter.CentraSiteFilterInterface |
---|
close, getAuditableEventMessage |
Method Detail |
---|
void validate(java.util.Collection registryObjects) throws CentraSiteFilterException
registryObjects
- the collection of registry objects to be exported. May be empty but not null.
CentraSiteFilterException
void validate(javax.xml.registry.infomodel.RegistryObject registryObject) throws CentraSiteFilterException
registryObject
- a registry object to be exported.
CentraSiteFilterException
void modify(java.util.Collection registryObjects) throws CentraSiteFilterException
The modified objects are written to the export zip file, but not to the registry.
registryObjects
- the collection of registry objects to be exported. May be empty but not null.
CentraSiteFilterException
void modify(javax.xml.registry.infomodel.RegistryObject registryObject) throws CentraSiteFilterException
The modified object is written to the export zip file, but not to the registry.
registryObject
- a registry object to be exported.
CentraSiteFilterException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |