Hi all

Could anyone suggest solution for the following situation.
Lets suppose we have:

public interface SomeManager{}

@ApplicationScoped
public class SomeManagerImpl implements SomeManager{}

@ApplicationScoped
public class Application {} //application entry point

In Application I need to pass configuration to SomeManagerImpl, but I don't want to
add setConfiguration method to SomeManager interface. What is the best way
to do it in Weld? Maybe I use some CDI mechanisms, or add extra classes. Please, help.

Best regards, Alex Sviridov