Search Results for

    Show / Hide Table of Contents

    Return Codes

    All possible return values of the deployment type have to be configured in this section.

    Example

    <returnCodes>
        <returnCode value="0" codeType="Success" />
        <returnCode value="99" codeType="FastRetry" 
                    name="Unknwon Error" description="An unknown error occured" />
    </returnCodes>
    

    Elements

    returnCode

    Attribute Type Description Required Version
    value int Possible return value of deployment type. X ≥1.0.0
    codeType string Type of the code. Possible values:
    • Success
    • Failure
    • HardReboot
    • SoftReboot
    • FastRetry
    X ≥1.0.0
    name string Optional name of the return code. - ≥1.8.0
    description string Optional description of the return code. - ≥1.8.0
    Back to top