All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.granite.offloading.workflow.api.JobOffloadingProcessArguments Maven / Gradle / Ivy

There is a newer version: 6.5.21
Show newest version
/*************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * __________________
 *
 *  Copyright 2013 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 *************************************************************************/
package com.adobe.granite.offloading.workflow.api;

/**
 * Workflow process arguments for integrating job execution in workflow steps.
 */
public enum JobOffloadingProcessArguments {

    /**
     * 

The job topic.

*

Mandatory. The job topic to use when adding new job.

*/ JOB_TOPIC("jobTopic"), /** *

The job properties.

*

* Optional. Job properties are expected to be an array of key|value pairs. Key/value are expected to be separated * by the pipe '|'. *

*/ JOB_PROPERTIES("jobProperties"), /** *

The offloading input.

*

Optional. The offloading input is expected to be an array of paths.

*/ OFFLOADING_INPUT("offloadingInput"), /** *

The offloading output.

*

Optional. The offloading output is expected to be an array of paths.

*/ OFFLOADING_OUTPUT("offloadingOutput"), /** *

Flag indicating if the workflow payload is supposed to be added to the offloading input.

*

Optional.

*/ OFFLOADING_INPUT_WORKFLOW_PAYLOAD("offloadingInputIncludeWorkflowPayload"), /** *

Flag indicating if the workflow payload is supposed to be added to the offloading output.

*

Optional.

*/ OFFLOADING_OUTPUT_WORKFLOW_PAYLOAD("offloadingOutputIncludeWorkflowPayload"); private String argumentName; /** * Create new argument. * * @param argumentName The argument name. */ JobOffloadingProcessArguments(String argumentName) { this.argumentName = argumentName; } /** * Get the argument name. * * @return The argument name. */ public String getArgumentName() { return this.argumentName; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy