* <p>This producer can only produce contexts registered through this method.</p>
*
*/
public void addRegisteredContext(CustomContext context){
Logger logger = getLogger();
ResourceBundle bundle = getBundle();
if (!getContexts().contains(context)){
getContexts().add(context);
logger.debug( bundle.getString("bootstrap-context-added", context.getClass().getCanonicalName() , context.getScope().getSimpleName() ) );
}
else{
logger.warn( bundle.getString("bootstrap-context-already-managed", context.getClass().getCanonicalName() , context.getScope().getSimpleName() ) );
}
}