DestinationResolver

Strategy for resolving a string destination name to an actual destination of type {@code !(T)}.

@author Mark Fisher @since 4.0 @param (T) the destination type

interface DestinationResolver (
T
) {}

Members

Functions

resolveDestination
T resolveDestination(string name)

Resolve the given destination name. @param name the destination name to resolve @return the resolved destination (never {@code null}) @throws DestinationResolutionException if the specified destination wasn't found or wasn't resolvable for any other reason

Meta