Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 395 Bytes

DE_Specific_AlfrescoPlatform.md

File metadata and controls

14 lines (11 loc) · 395 Bytes

Alfresco version specific beans

Dynamic Extensions provides the possibility to initialize some beans only on specific Alfresco versions. The @AlfrescoPlatform annotation indicates for which Alfresco version range a specific bean (annotated with e.g. @Component) should be initialized.

@Component
@AlfrescoPlatform(minVersion = "6.0")
public class Alfresco6SpecificBean {

}