DeployMessage Class
Namespace
Usage
Use DeployMessage to access
detailed information about component deployments. Salesforce provides a list of
DeployMessages for a completed deployment via the
DeployDetails and DeployResults instances sent in the DeployCallback.handleResult() callback.
DeployMessage Properties
The following are properties for DeployMessage.
changed
Determines whether the component was changed after deployment. If
true, the component was changed as a result of the deployment. If false, the deployed
component was the same as the corresponding component already in the org.
Signature
public Boolean changed {get; set;}
Property Value
Type: Boolean
columnNumber
Each component is represented by a text file. If an error occurs
during deployment, this property represents the column of the text file where the error
occurred.
Signature
public Integer columnNumber {get; set;}
Property Value
Type: Integer
created
If true, the component was created as a result of the deployment. If
false, the component was modified as a result of the deployment.
Signature
public Boolean created {get; set;}
Property Value
Type: Boolean
deleted
If true, the component was deleted as a result of the deployment. If
false, the component was either new or modified as result of the deployment.
Signature
public Boolean deleted {get; set;}
Property Value
Type: Boolean
lineNumber
Each component is represented by a text file. If an error occurs
during deployment, this field represents the line number of the text file where the error
occurred.
Signature
public Integer lineNumber {get; set;}
Property Value
Type: Integer
problem
If an error or warning occurred, this field contains a description of
the problem that caused the deployment to fail.
Signature
public String problem {get; set;}
Property Value
Type: String