[CST-7756] added missing JavaDoc

This commit is contained in:
Mykhaylo
2023-02-03 12:14:28 +01:00
parent c297e49ed2
commit 4fd8eeebb8
6 changed files with 33 additions and 16 deletions

View File

@@ -42,8 +42,8 @@ public class SubscriptionEmailNotificationConfiguration<T
public Options getOptions() {
if (Objects.isNull(options)) {
Options options = new Options();
options.addOption("f", "Frequency", true, "Subscription frequency."
+ " It can have value D stand for 'Day', W stand for 'Week' and M stand for 'Month'");
options.addOption("f", "Frequency", true,
"Subscription frequency. Valid values include: D (Day), W (Week) and M (Month)");
options.getOption("f").setRequired(true);
super.options = options;
}