@@ -209,19 +209,21 @@ public SaveRowsCommand.AuditBehavior getAuditBehavior()
209
209
return _auditBehavior ;
210
210
}
211
211
212
- public void setAuditBehavior (SaveRowsCommand .AuditBehavior auditBehavior )
212
+ public Command setAuditBehavior (SaveRowsCommand .AuditBehavior auditBehavior )
213
213
{
214
214
_auditBehavior = auditBehavior ;
215
+ return this ;
215
216
}
216
217
217
218
public String getAuditUserComment ()
218
219
{
219
220
return _auditUserComment ;
220
221
}
221
222
222
- public void setAuditUserComment (String auditUserComment )
223
+ public Command setAuditUserComment (String auditUserComment )
223
224
{
224
225
_auditUserComment = auditUserComment ;
226
+ return this ;
225
227
}
226
228
227
229
public CommandType getCommandType ()
@@ -234,19 +236,21 @@ public String getContainerPath()
234
236
return _containerPath ;
235
237
}
236
238
237
- public void setContainerPath (String containerPath )
239
+ public Command setContainerPath (String containerPath )
238
240
{
239
241
_containerPath = containerPath ;
242
+ return this ;
240
243
}
241
244
242
245
public Map <String , Object > getExtraContext ()
243
246
{
244
247
return _extraContext ;
245
248
}
246
249
247
- public void setExtraContext (Map <String , Object > extraContext )
250
+ public Command setExtraContext (Map <String , Object > extraContext )
248
251
{
249
252
_extraContext = extraContext ;
253
+ return this ;
250
254
}
251
255
252
256
public String getQueryName ()
@@ -264,19 +268,21 @@ public List<Map<String, Object>> getRows()
264
268
return _rows ;
265
269
}
266
270
267
- public void setRows (List <Map <String , Object >> rows )
271
+ public Command setRows (List <Map <String , Object >> rows )
268
272
{
269
273
_rows = rows ;
274
+ return this ;
270
275
}
271
276
272
277
public Boolean isSkipReselectRows ()
273
278
{
274
279
return _skipReselectRows ;
275
280
}
276
281
277
- public void setSkipReselectRows (Boolean skipReselectRows )
282
+ public Command setSkipReselectRows (Boolean skipReselectRows )
278
283
{
279
284
_skipReselectRows = skipReselectRows ;
285
+ return this ;
280
286
}
281
287
}
282
288
}
0 commit comments