Question
Meta Translation Functions Not Active For Custom Translator Connector
I created a custom translator connector based off of the base AEM translator connector project found here:
The translation service is successfully registered and created, the "translateArray" function is called when the job is run, and the content is translated correctly. However, no other methods in my translation service are called except for "isDirectionSupported". I've gone through the flow several times, with both the default project and the project with my updates, and neither shows any logs from any other function in this class. I am currently trying to integrate our translation memory, but noticed that nothing else outside of this scope is working.
The question is, is there a special configuration that needs to be applied to activate different parts of the custom translation service connector?
The factory that creates the service class implements TranslationServiceFactory.
public class BootstrapTranslationServiceFactoryImpl implements TranslationServiceFactory{
The actual service class extends "AbstractTranslationService" and implements "TranslationService"
public class BootstrapTranslationServiceImpl extends AbstractTranslationService implements TranslationService{
The AbstractTranslationService Class:
The TranslationService Interface: