Class MvnTestExecutorAssigned_1_0

java.lang.Object
com.gradle.scan.eventmodel.maven.test.MvnTestExecutorAssigned_1_0
All Implemented Interfaces:
com.gradle.scan.eventmodel.EventData

@MavenVersion(since="3.3.1") @MavenExtensionVersion(since="1.18") public class MvnTestExecutorAssigned_1_0 extends Object implements com.gradle.scan.eventmodel.EventData
Captures the data about the test executor assigned to execute test classes of a test goal.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final long
    The ID of the test goal execution the request is being made as part of.
    final @Nullable("if local executor is assigned or if is equal to name") String
    The hostname of the test executor assigned to the test goal.
    final long
    The ID of the test executor assigned to the test goal.
    final boolean
    Indicates whether assigned executor is local or remote.
    final String
    The name of the test executor assigned to the test goal.
    final @Nullable("if a local test executor was assigned") String
    The ID of the Test Distribution executor pool the executor belongs to.
  • Constructor Summary

    Constructors
    Constructor
    Description
    MvnTestExecutorAssigned_1_0(long goalExecutionId, long id, boolean isRemote, String name, @Nullable String hostname, @Nullable String poolId)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
     
    int
     
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • goalExecutionId

      public final long goalExecutionId
      The ID of the test goal execution the request is being made as part of.

      Corresponds to MvnGoalExecutionStarted_1_0.id.

    • id

      public final long id
      The ID of the test executor assigned to the test goal.

      Matches MvnTestExecutorReleased_1_0.id

    • isRemote

      public final boolean isRemote
      Indicates whether assigned executor is local or remote.
    • name

      public final String name
      The name of the test executor assigned to the test goal.
    • hostname

      @Nullable("if local executor is assigned or if is equal to name") public final @Nullable("if local executor is assigned or if is equal to name") String hostname
      The hostname of the test executor assigned to the test goal.
    • poolId

      @Nullable("if a local test executor was assigned") public final @Nullable("if a local test executor was assigned") String poolId
      The ID of the Test Distribution executor pool the executor belongs to.
  • Constructor Details

    • MvnTestExecutorAssigned_1_0

      public MvnTestExecutorAssigned_1_0(long goalExecutionId, long id, boolean isRemote, String name, @Nullable @Nullable String hostname, @Nullable @Nullable String poolId)
  • Method Details