Interface IdentifierGenerator<P>
-
- Type Parameters:
P- - type of the object that helps derive the identifier.
- All Known Implementing Classes:
CronJobIdentifierGenerator,JobIdentifierGenerator,StreamContainerIdentifierGenerator
public interface IdentifierGenerator<P>This interface defines how to generate aStringidentifier for each model that is associated with the creation of an OutboundSyncChannelConfiguration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringgenerate(P object)Derives an identifier to be set on a model
-
-
-
Method Detail
-
generate
java.lang.String generate(P object)
Derives an identifier to be set on a model- Parameters:
object- generic item to help derive a name that will be returned- Returns:
- an identifier for a model to associate it with a channel
-
-