@@ -45,7 +45,7 @@ public R entityManager(final EntityManager em) {
45
45
* <p>
46
46
* Overwrites the existing set.
47
47
*
48
- * @param ids the tenant-ID to use
48
+ * @param ids the tenant-IDs to use
49
49
* @return an instance of this builder to provide a fluent interface
50
50
*/
51
51
@ SuppressWarnings ("unchecked" )
@@ -59,7 +59,7 @@ public R readTenant(final Long... ids) {
59
59
* <p>
60
60
* Overwrites the existing set.
61
61
*
62
- * @param ids the tenant-ID to use
62
+ * @param ids the tenant-IDs to use
63
63
* @return an instance of this builder to provide a fluent interface
64
64
*/
65
65
@ SuppressWarnings ("unchecked" )
@@ -73,7 +73,8 @@ public R readTenant(final Collection<Long> ids) {
73
73
* <p>
74
74
* Overwrites the existing set.
75
75
*
76
- * @param ids the tenant-ID to use
76
+ * @param commaSeparatedList the tenant-IDs to use in the form of a
77
+ * comma-separated list
77
78
* @return an instance of this builder to provide a fluent interface
78
79
*/
79
80
public R readTenant (final String commaSeparatedList ) {
@@ -85,7 +86,7 @@ public R readTenant(final String commaSeparatedList) {
85
86
* <p>
86
87
* Overwrites the existing set.
87
88
*
88
- * @param ids the tenant-ID to use
89
+ * @param ids the tenant-IDs to use
89
90
* @return an instance of this builder to provide a fluent interface
90
91
*/
91
92
@ SuppressWarnings ("unchecked" )
@@ -99,7 +100,7 @@ public R writeTenant(final Long... ids) {
99
100
* <p>
100
101
* Overwrites the existing set.
101
102
*
102
- * @param ids the tenant-ID to use
103
+ * @param ids the tenant-IDs to use
103
104
* @return an instance of this builder to provide a fluent interface
104
105
*/
105
106
@ SuppressWarnings ("unchecked" )
@@ -113,7 +114,8 @@ public R writeTenant(final Collection<Long> ids) {
113
114
* <p>
114
115
* Overwrites the existing set.
115
116
*
116
- * @param ids the tenant-ID to use
117
+ * @param commaSeparatedList the tenant-IDs to use in the form of a
118
+ * comma-separated list
117
119
* @return an instance of this builder to provide a fluent interface
118
120
*/
119
121
public R writeTenant (final String commaSeparatedList ) {
@@ -127,7 +129,7 @@ public R writeTenant(final String commaSeparatedList) {
127
129
* Overwrites the existing sets of {@link #readTenant(Long...)} and
128
130
* {@link #writeTenant(Long...)}.
129
131
*
130
- * @param ctx the context that contains the tenant-ID to use
132
+ * @param ctx the context that contains the tenant-IDs to use (read and write)
131
133
* @return an instance of this builder to provide a fluent interface
132
134
*/
133
135
@ SuppressWarnings ("unchecked" )
0 commit comments