Skip to content

Commit d11c3ea

Browse files
committed
fix doc builder
1 parent f527872 commit d11c3ea

File tree

1 file changed

+13
-17
lines changed

1 file changed

+13
-17
lines changed

src/main/java/org/databunker/options/OptionsConverter.java

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
import java.util.Map;
55

66
/**
7-
* Utility class to convert option objects to Map<String, Object> for backward compatibility
7+
* Utility class to convert option objects to Map&lt;String, Object&gt; for backward compatibility
88
*/
99
public class OptionsConverter {
1010

1111
/**
12-
* Converts BasicOptions to Map<String, Object>
12+
* Converts BasicOptions to Map&lt;String, Object&gt;
1313
* @param options The BasicOptions object
1414
* @return A Map representation of the options
1515
*/
@@ -27,7 +27,7 @@ public static Map<String, Object> toMap(BasicOptions options) {
2727
}
2828

2929
/**
30-
* Converts UserOptions to Map<String, Object>
30+
* Converts UserOptions to Map&lt;String, Object&gt;
3131
* @param options The UserOptions object
3232
* @return A Map representation of the options
3333
*/
@@ -57,7 +57,7 @@ public static Map<String, Object> toMap(UserOptions options) {
5757
}
5858

5959
/**
60-
* Converts SharedRecordOptions to Map<String, Object>
60+
* Converts SharedRecordOptions to Map&lt;String, Object&gt;
6161
* @param options The SharedRecordOptions object
6262
* @return A Map representation of the options
6363
*/
@@ -81,7 +81,7 @@ public static Map<String, Object> toMap(SharedRecordOptions options) {
8181
}
8282

8383
/**
84-
* Converts LegalBasisOptions to Map<String, Object>
84+
* Converts LegalBasisOptions to Map&lt;String, Object&gt;
8585
* @param options The LegalBasisOptions object
8686
* @return A Map representation of the options
8787
*/
@@ -116,10 +116,8 @@ public static Map<String, Object> toMap(LegalBasisOptions options) {
116116
return map;
117117
}
118118

119-
120-
121119
/**
122-
* Converts AgreementAcceptOptions to Map<String, Object>
120+
* Converts AgreementAcceptOptions to Map&lt;String, Object&gt;
123121
* @param options The AgreementAcceptOptions object
124122
* @return A Map representation of the options
125123
*/
@@ -149,7 +147,7 @@ public static Map<String, Object> toMap(AgreementAcceptOptions options) {
149147
}
150148

151149
/**
152-
* Converts ConnectorOptions to Map<String, Object>
150+
* Converts ConnectorOptions to Map&lt;String, Object&gt;
153151
* @param options The ConnectorOptions object
154152
* @return A Map representation of the options
155153
*/
@@ -194,7 +192,7 @@ public static Map<String, Object> toMap(ConnectorOptions options) {
194192
}
195193

196194
/**
197-
* Converts TenantOptions to Map<String, Object>
195+
* Converts TenantOptions to Map&lt;String, Object&gt;
198196
* @param options The TenantOptions object
199197
* @return A Map representation of the options
200198
*/
@@ -215,7 +213,7 @@ public static Map<String, Object> toMap(TenantOptions options) {
215213
}
216214

217215
/**
218-
* Converts ProcessingActivityOptions to Map<String, Object>
216+
* Converts ProcessingActivityOptions to Map&lt;String, Object&gt;
219217
* @param options The ProcessingActivityOptions object
220218
* @return A Map representation of the options
221219
*/
@@ -241,10 +239,8 @@ public static Map<String, Object> toMap(ProcessingActivityOptions options) {
241239
return map;
242240
}
243241

244-
245-
246242
/**
247-
* Converts GroupOptions to Map<String, Object>
243+
* Converts GroupOptions to Map&lt;String, Object&gt;
248244
* @param options The GroupOptions object
249245
* @return A Map representation of the options
250246
*/
@@ -265,7 +261,7 @@ public static Map<String, Object> toMap(GroupOptions options) {
265261
}
266262

267263
/**
268-
* Converts RoleOptions to Map<String, Object>
264+
* Converts RoleOptions to Map&lt;String, Object&gt;
269265
* @param options The RoleOptions object
270266
* @return A Map representation of the options
271267
*/
@@ -283,7 +279,7 @@ public static Map<String, Object> toMap(RoleOptions options) {
283279
}
284280

285281
/**
286-
* Converts TokenOptions to Map<String, Object>
282+
* Converts TokenOptions to Map&lt;String, Object&gt;
287283
* @param options The TokenOptions object
288284
* @return A Map representation of the options
289285
*/
@@ -304,7 +300,7 @@ public static Map<String, Object> toMap(TokenOptions options) {
304300
}
305301

306302
/**
307-
* Converts PolicyOptions to Map<String, Object>
303+
* Converts PolicyOptions to Map&lt;String, Object&gt;
308304
* @param options The PolicyOptions object
309305
* @return A Map representation of the options
310306
*/

0 commit comments

Comments
 (0)