Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/
public class ResolveEndpointFailedException extends RuntimeCamelException {

private final @Nullable String uri;
private final String uri;

/**
* @param uri the endpoint URI that could not be resolved
Expand Down Expand Up @@ -57,7 +57,7 @@ public ResolveEndpointFailedException(@Nullable String uri) {
this.uri = sanitizeUri(uri);
}

public @Nullable String getUri() {
public String getUri() {
return uri;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -194,13 +194,13 @@ default void onServiceRemove(CamelContext context, Service service, @Nullable Ro
*
* @param camelContext the camel context
* @param threadPool the thread pool
* @param id id of the thread pool (can be null in special cases)
* @param id id of the thread pool
* @param sourceId id of the source creating the thread pool (can be null in special cases)
* @param routeId id of the route for the source (is null if no source)
* @param threadPoolProfileId id of the thread pool profile, if used for creating this thread pool (can be null)
*/
void onThreadPoolAdd(
CamelContext camelContext, ThreadPoolExecutor threadPool, @Nullable String id,
CamelContext camelContext, ThreadPoolExecutor threadPool, String id,
@Nullable String sourceId, @Nullable String routeId, @Nullable String threadPoolProfileId);

/**
Expand All @@ -217,13 +217,13 @@ void onThreadPoolAdd(
*
* @param camelContext the camel context
* @param executorService the executor service
* @param id id of the thread pool (can be null in special cases)
* @param id id of the thread pool
* @param sourceId id of the source creating the thread pool (can be null in special cases)
* @param routeId id of the route for the source (is null if no source)
* @param threadPoolProfileId id of the thread pool profile, if used for creating this thread pool (can be null)
*/
default void onThreadPoolAdd(
CamelContext camelContext, ExecutorService executorService, @Nullable String id,
CamelContext camelContext, ExecutorService executorService, String id,
@Nullable String sourceId, @Nullable String routeId, @Nullable String threadPoolProfileId) {
}

Expand Down