Package com.boomi.connector.testutil
Class SimpleGetRequest
- java.lang.Object
-
- com.boomi.connector.testutil.SimpleGetRequest
-
- All Implemented Interfaces:
GetRequest,OperationRequest
public class SimpleGetRequest extends Object implements GetRequest
SimpleOperationRequestfor testingOperationType.GEToperations.
-
-
Constructor Summary
Constructors Constructor Description SimpleGetRequest(ObjectIdData objectId)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetExecutionId()Get the id for the current process execution.ObjectIdDatagetObjectId()Returns the single non-nulltracked id of the object to be retrieved.StringgetProcessId()Retrieves the current process id.TelemetrygetTelemetry()Returns theTelemetryinstance associated with the current operation execution, providing access to distributed tracing information for the active connector step.StringgetTopLevelExecutionId()Get the top level execution id for the current executionStringgetTopLevelProcessId()Retrieves the top level process id-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.boomi.connector.api.OperationRequest
getExecutionId, getProcessId, getTelemetry, getTopLevelExecutionId, getTopLevelProcessId
-
-
-
-
Constructor Detail
-
SimpleGetRequest
public SimpleGetRequest(ObjectIdData objectId)
-
-
Method Detail
-
getObjectId
public ObjectIdData getObjectId()
Description copied from interface:GetRequestReturns the single non-nulltracked id of the object to be retrieved.- Specified by:
getObjectIdin interfaceGetRequest
-
getProcessId
public String getProcessId()
Description copied from interface:OperationRequestRetrieves the current process id. This may be a sub-execution and differ fromOperationRequest.getTopLevelProcessId()- Specified by:
getProcessIdin interfaceOperationRequest- Returns:
- the current process component id
-
getTopLevelProcessId
public String getTopLevelProcessId()
Description copied from interface:OperationRequestRetrieves the top level process id- Specified by:
getTopLevelProcessIdin interfaceOperationRequest- Returns:
- the top level process component id
-
getExecutionId
public String getExecutionId()
Description copied from interface:OperationRequestGet the id for the current process execution. This may be a sub-execution and differ fromOperationRequest.getTopLevelExecutionId()- Specified by:
getExecutionIdin interfaceOperationRequest- Returns:
- the execution id
-
getTopLevelExecutionId
public String getTopLevelExecutionId()
Description copied from interface:OperationRequestGet the top level execution id for the current execution- Specified by:
getTopLevelExecutionIdin interfaceOperationRequest- Returns:
- the top level execution id
-
getTelemetry
public Telemetry getTelemetry()
Description copied from interface:OperationRequestReturns theTelemetryinstance associated with the current operation execution, providing access to distributed tracing information for the active connector step.- Specified by:
getTelemetryin interfaceOperationRequest- Returns:
- the telemetry instance for the current operation
-
-