Hi Arun,Can you help me to understand on below, Which is best way to
have the default value for the particular configuration.1) Using
org.osgi.service.metatype.annotations.AttributeDefinition.defaultValue().
@AttributeDefinition(name = "Cron-job expression", defaultValue =
"*/30***?") String scheduler_expression();2) @AttributeDefinition(name =
"Cron-job expression") String scheduler_expression() default "*/30 * * *
* ?"; String scheduler_expression() default "*/30 * * * *
?";Thanks,Vijay