So, my extensioninfo.xml file looks like this:
<extension abstractclassprefix="Generated" classprefix="TrainingFacades" name="trainingfacades">
<!-- you should add all required extensions to this list, except platform
extensions which are automatically required -->
<requires-extension name="acceleratorfacades"/>
<requires-extension name="trainingcore"/>
<requires-extension name="trainingbackoffice"/>
<coremodule generated="true" manager="de.hybris.platform.jalo.extension.GenericManager" packageroot="com.training.facades"/>
<meta key="backoffice-module" value="true"/>
</extension>
The reason for why this is happening, is in my custom backoffice extension, services are located under backoffice/src, not under src.
But as I need loginInfoHandler from backoffice context, I need them placed exactly there. Or maybe I can add jar with loginInfoHandler to another extension (how can this be done)?
I'd appreciate your help, for sure.
I'm not sure I understand your scenario; it's not described clearly. But if my understanding is correct, you have a custom backoffice service which needs to pass loginInfoHandler data to a facade/service in another extension. Is it correct?
If my understanding is correct, you just need to make your custom backoffice extension depend on the facade (i.e. the custom backoffice extension has a requires-extension to the facade extension). Then, you can inject this facade to your backoffice service. You pass whatever data you need from loginInfoHandler to the facade. Does it make sense?