*
* @param configuration the configuration to be applied.
*/
public void process(final Configuration configuration) {
if (!this.processed) {
final IDocTypeTranslation translation =
configuration.getDocTypeTranslationBySource(this.publicId, this.systemId);
if (translation != null) {
this.processedPublicId = translation.getTargetPublicID();
this.processedSystemId = translation.getTargetSystemID();
this.processed = true;
}
}
}