fferpcore.DataTransformationServiceglobal with sharing class DataTransformationService Perform data transformation using the Transformation Tables. Methodstransformglobal static fferpcore.DataTransformationService.TransformResult transform(Set<fferpcore.DataTransformationService.TransformRequest> requests) The method takes a set of TransformRequests and performs the transformation. It yields a Transformation result which wraps all the DataResults for each TransformRequest. Input Parameters
Return ValueThis service returns a DataTransformationService.TransformResult. Sample Code
fferpcore.DataTransformationService.TransformRequestglobal class TransformRequest Used to construct a request passed into the transform method fferpcore.DataTransformationService service. Methods
TransformRequestglobal TransformRequest(Id transformTableId, String[] inputs) Used to construct a request passed into the transform method fferpcore.DataTransformationService service. Input Parameters
Sample Code
getTransformTableIdglobal Id getTransformTableId() Used to get the Id used to construct the object. Return ValueThis service returns an Id object. Sample Code
getInputsglobal String[] getInputs() Used to extract to the inputValues used to construct the object. Return ValueThis service returns a String[] object. Sample Code
equalsglobal Boolean equals(Object other) hashCodeglobal Integer hashCode() fferpcore.DataTransformationService.TransformResultglobal class TransformResult Result of a transform operation. Methods
TransformResultglobal TransformResult(Map<fferpcore.DataTransformationService.TransformRequest, fferpcore.DataTransformationService.DataResult> requestToResultMap) Construct a TransformResult using the specified DataResults, keyed by TransformRequest. Input Parameters
Return ValueThe TransformResult instance. getDataResultForTransformRequestglobal fferpcore.DataTransformationService.DataResult getDataResultForTransformRequest(fferpcore.DataTransformationService.TransformRequest transformRequest) Input Parameters
Return ValueThis service returns a DataTransformationService.DataResult Sample Code
fferpcore.DataTransformationService.DataResultglobal class DataResult Result for a single transform request. Methods
DataResultglobal DataResult(String output, String error) Construct a DataResult with the given output and error. If output and error are both null, an explicit null output is assumed. Input Parameters
Return ValueThe DataResult instance. isErrorglobal Boolean isError() This method returns true if a data transformation has failed. This could occur when a data transformation table has been deleted but a mapping is still associated with it. Return ValueTrue if there is an error. Sample Code
getErrorglobal String getError() This method returns the error message associated with the DataResult, if one is present. If one isn't present null will be used. Return ValueThe error as a string object, or null. Sample Code
getOutputglobal String getOutput() This method returns the output of the data transformation. This output can be null if the value is null or if there is an error. Return ValueThe output value. Can be null if the value is null, or if there is an error. Sample Code
|