// only have a single annotation, the order doesn't matter so much, as long as
// UnclaimedField is last.
configuration.add("Meta", new MetaWorker());
configuration.add("ApplicationState", new ApplicationStateWorker(applicationStateManager));
configuration.add("InjectNamed", new InjectNamedWorker(objectProvider, locator));
configuration.add(
"InjectAnonymous",
new InjectAnonymousWorker(locator, injectionProvider),
"after:InjectNamed");
configuration.add("InjectAsset", new InjectAssetWorker(assetSource), "before:InjectNamed");