Package org.apache.camel.console
Interface DevConsoleResolver
-
- All Superinterfaces:
CamelContextAware
public interface DevConsoleResolver extends CamelContextAware
A pluggable strategy for resolving dev consoles in a loosely coupled manner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Optional<DevConsole>lookupDevConsole(String id)Lookup existing resolvedDevConsole.DevConsoleresolveDevConsole(String id)Resolves the givenDevConsole.-
Methods inherited from interface org.apache.camel.CamelContextAware
getCamelContext, setCamelContext
-
-
-
-
Method Detail
-
resolveDevConsole
DevConsole resolveDevConsole(String id)
Resolves the givenDevConsole.- Parameters:
id- the id of theDevConsole- Returns:
- the resolved
DevConsole, or null if not found
-
lookupDevConsole
Optional<DevConsole> lookupDevConsole(String id)
Lookup existing resolvedDevConsole.- Parameters:
id- the id of theDevConsole- Returns:
- the existing
DevConsole, or null if not yet resolved or not found
-
-