Package com.technia.tif.enovia.payload
Interface PayloadContext
-
- All Superinterfaces:
com.technia.tif.enovia.ParamProvider
@API public interface PayloadContext extends com.technia.tif.enovia.ParamProvider- Since:
- 2013
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.technia.tvc.core.db.aef.env.EnvironmentgetEnv()com.technia.tif.enovia.model.JobgetJob()PayloadgetPayload()com.technia.tif.core.log.ProgressLoggergetProgressLogger()java.util.Map<java.lang.String,java.lang.String>getRPE()java.util.Map<java.lang.String,java.lang.String>getTransformerProperties()
-
-
-
Method Detail
-
getPayload
Payload getPayload()
- Returns:
- The current payload instance
- Since:
- 2019-01-09
-
getEnv
com.technia.tvc.core.db.aef.env.Environment getEnv()
- Returns:
- The current environment instance
- Since:
- 2013
-
getRPE
java.util.Map<java.lang.String,java.lang.String> getRPE()
- Returns:
- The ENOVIA RPE map as available when the job was created on the ENOVIA server.
- Since:
- 2013
-
getTransformerProperties
java.util.Map<java.lang.String,java.lang.String> getTransformerProperties()
- Returns:
- A map containing the input sent to the transformer.
- Since:
- 2013
-
getJob
com.technia.tif.enovia.model.Job getJob()
- Returns:
- The current job
- Since:
- 2021.2.0
-
getProgressLogger
com.technia.tif.core.log.ProgressLogger getProgressLogger()
- Returns:
- The ProgressLogger to be used to log progress.
- Since:
- 2021.2.0
-
-