@@ -276,7 +276,7 @@ public IgniteUuid sessionId() {
276276 }
277277
278278 /**
279- * Sets task session ID.
279+ * @param sesId New task session ID.
280280 */
281281 public void sessionId (IgniteUuid sesId ) {
282282 this .sesId = sesId ;
@@ -290,7 +290,7 @@ public IgniteUuid jobId() {
290290 }
291291
292292 /**
293- * Sets job session ID.
293+ * @param jobId New job session ID.
294294 */
295295 public void jobId (IgniteUuid jobId ) {
296296 this .jobId = jobId ;
@@ -304,7 +304,7 @@ public String taskClassName() {
304304 }
305305
306306 /**
307- * Sets task class name.
307+ * @param taskClsName New task class name.
308308 */
309309 public void taskClassName (String taskClsName ) {
310310 this .taskClsName = taskClsName ;
@@ -318,7 +318,7 @@ public String taskName() {
318318 }
319319
320320 /**
321- * Sets task name.
321+ * @param taskName New task name.
322322 */
323323 public void taskName (String taskName ) {
324324 this .taskName = taskName ;
@@ -332,7 +332,7 @@ public String userVersion() {
332332 }
333333
334334 /**
335- * Sets task version.
335+ * @param userVer New task version.
336336 */
337337 public void userVersion (String userVer ) {
338338 this .userVer = userVer ;
@@ -346,7 +346,7 @@ public byte[] jobBytes() {
346346 }
347347
348348 /**
349- * Sets serialized job bytes.
349+ * @param jobBytes New serialized job bytes.
350350 */
351351 public void jobBytes (byte [] jobBytes ) {
352352 this .jobBytes = jobBytes ;
@@ -367,7 +367,7 @@ public long startTaskTime() {
367367 }
368368
369369 /**
370- * Sets task start time.
370+ * @param startTaskTime New task start time.
371371 */
372372 public void startTaskTime (long startTaskTime ) {
373373 this .startTaskTime = startTaskTime ;
@@ -381,7 +381,7 @@ public long timeout() {
381381 }
382382
383383 /**
384- * Sets timeout.
384+ * @param timeout New timeout.
385385 */
386386 public void timeout (long timeout ) {
387387 this .timeout = timeout ;
@@ -404,7 +404,7 @@ public byte[] siblingsBytes() {
404404 }
405405
406406 /**
407- * Sets serialized collection of split siblings.
407+ * @param siblingsBytes New serialized collection of split siblings.
408408 */
409409 public void siblingsBytes (byte [] siblingsBytes ) {
410410 this .siblingsBytes = siblingsBytes ;
@@ -425,7 +425,7 @@ public byte[] sessionAttributesBytes() {
425425 }
426426
427427 /**
428- * Sets serialized form of session attributes.
428+ * @param sesAttrsBytes New serialized form of session attributes.
429429 */
430430 public void sessionAttributesBytes (byte [] sesAttrsBytes ) {
431431 this .sesAttrsBytes = sesAttrsBytes ;
@@ -446,7 +446,7 @@ public byte[] jobAttributesBytes() {
446446 }
447447
448448 /**
449- * Sets serialized form of job attributes.
449+ * @param jobAttrsBytes New serialized form of job attributes.
450450 */
451451 public void jobAttributesBytes (byte [] jobAttrsBytes ) {
452452 this .jobAttrsBytes = jobAttrsBytes ;
@@ -467,7 +467,7 @@ public String checkpointSpi() {
467467 }
468468
469469 /**
470- * Sets checkpoint SPI name.
470+ * @param cpSpi New checkpoint SPI name.
471471 */
472472 public void checkpointSpi (String cpSpi ) {
473473 this .cpSpi = cpSpi ;
@@ -481,7 +481,7 @@ public IgniteUuid classLoaderId() {
481481 }
482482
483483 /**
484- * Sets task local class loader id.
484+ * @param clsLdrId New task local class loader id.
485485 */
486486 public void classLoaderId (IgniteUuid clsLdrId ) {
487487 this .clsLdrId = clsLdrId ;
@@ -518,7 +518,7 @@ public boolean dynamicSiblings() {
518518 }
519519
520520 /**
521- * Sets dynamic siblings flag.
521+ * @param dynamicSiblings New dynamic siblings flag.
522522 */
523523 public void dynamicSiblings (boolean dynamicSiblings ) {
524524 this .dynamicSiblings = dynamicSiblings ;
@@ -532,7 +532,7 @@ public Map<UUID, IgniteUuid> loaderParticipants() {
532532 }
533533
534534 /**
535- * Sets dynamic siblings flag .
535+ * @param ldrParticipants New node class loader participant map .
536536 */
537537 public void loaderParticipants (Map <UUID , IgniteUuid > ldrParticipants ) {
538538 this .ldrParticipants = ldrParticipants ;
@@ -546,7 +546,7 @@ public boolean forceLocalDeployment() {
546546 }
547547
548548 /**
549- * Sets local deploymend forcing flag.
549+ * @param forceLocDep New local deployment forcing flag.
550550 */
551551 public void forceLocalDeployment (boolean forceLocDep ) {
552552 this .forceLocDep = forceLocDep ;
@@ -560,7 +560,7 @@ public void forceLocalDeployment(boolean forceLocDep) {
560560 }
561561
562562 /**
563- * Sets topology.
563+ * @param top New topology.
564564 */
565565 public void topology (@ Nullable Collection <UUID > top ) {
566566 this .top = top ;
@@ -581,7 +581,7 @@ public byte[] topologyPredicateBytes() {
581581 }
582582
583583 /**
584- * Sets marshalled topology predicate.
584+ * @param topPredBytes New marshalled topology predicate.
585585 */
586586 public void topologyPredicateBytes (byte [] topPredBytes ) {
587587 this .topPredBytes = topPredBytes ;
@@ -595,7 +595,7 @@ public boolean sessionFullSupport() {
595595 }
596596
597597 /**
598- * Sets flag, indicating that session attributes are enabled.
598+ * @param sesFullSup New flag, indicating that session attributes are enabled.
599599 */
600600 public void sessionFullSupport (boolean sesFullSup ) {
601601 this .sesFullSup = sesFullSup ;
@@ -609,7 +609,7 @@ public boolean internal() {
609609 }
610610
611611 /**
612- * Sets internal flag.
612+ * @param internal New internal job flag.
613613 */
614614 public void internal (boolean internal ) {
615615 this .internal = internal ;
@@ -623,7 +623,7 @@ public int[] cacheIds() {
623623 }
624624
625625 /**
626- * Sets cache identifiers.
626+ * @param cacheIds New cache identifiers.
627627 */
628628 public void cacheIds (int [] cacheIds ) {
629629 this .cacheIds = cacheIds ;
@@ -637,7 +637,7 @@ public int partition() {
637637 }
638638
639639 /**
640- * Sets partition.
640+ * @param part New partition.
641641 */
642642 public void partition (int part ) {
643643 this .part = part ;
@@ -649,7 +649,7 @@ public void partition(int part) {
649649 }
650650
651651 /**
652- * Sets executor name.
652+ * @param execName New executor name.
653653 */
654654 public void executorName (String execName ) {
655655 this .execName = execName ;
@@ -663,7 +663,7 @@ public AffinityTopologyVersion topologyVersion() {
663663 }
664664
665665 /**
666- * Sets topology version.
666+ * @param topVer New topology version.
667667 */
668668 public void topologyVersion (AffinityTopologyVersion topVer ) {
669669 this .topVer = topVer ;
0 commit comments