|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface CentraSiteImportFilterInterface
Abstract interface class for import 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 import 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 imported. May be empty but not null.
CentraSiteFilterException
void validate(javax.xml.registry.infomodel.RegistryObject registryObject) throws CentraSiteFilterException
registryObject
- a registry object to be imported.
CentraSiteFilterException
void modify(java.util.Collection registryObjects) throws CentraSiteFilterException
The modified objects will be written to the registry instead of the corresponding objects in the import zip file.
registryObjects
- the collection of registry objects to be imported. May be empty but not null.
CentraSiteFilterException
void modify(javax.xml.registry.infomodel.RegistryObject registryObject) throws CentraSiteFilterException
The modified object will be written to the registry instead of the corresponding object in the import zip file.
registryObject
- a registry object to be imported.
CentraSiteFilterException
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |