Annotation Interface FolderConfigName
Specifies the folder config name for injecting a
FolderConfigRef.
Use this annotation to disambiguate when multiple folder configs of the same item type exist. If only one folder config exists for the item type, this annotation is optional.
Example usage:
@FolderConfigName("admin_boosters")
private FolderConfigRef<Booster> adminBoosters;
@FolderConfigName("user_boosters")
private FolderConfigRef<Booster> userBoosters;
-
Required Element Summary
Required Elements
-
Element Details
-
value
String valueThe folder config name to select.- Returns:
- the folder config name
-