Programming with Content Services ES > Invoking LiveCycle ES Services from Custom Actions > Defining your application logic > Implementing the action executor class

Implementing the action executor class
Your implementation of the ActionExecuterAbstractBase interface must include an addParameterDefinitions method, which is used to add parameters to the custom repository action, as well as an executeImpl method, which contains the actual business logic.
The name of the action executor is defined by the static NAME attribute, which is assigned the value of "process-action" in this case, as shown in the following code example.
Example: Defining the name of the action executor
This example shows how to define the name of the action executor through the static NAME attribute.
public class ReviewProcessActionExecuter extends ActionExecuterAbstractBase
{
	// process name - this will be used to refer to the action.
	public static final String NAME = "process-action";

Programming with Content Services ES > Invoking LiveCycle ES Services from Custom Actions > Defining your application logic > Implementing the action executor class

Programming with LiveCycle ES (LiveDocs)
Adobe LiveCycle ES Update 1

 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/livecycle/8.2/programLC/programmer/help/001566_2.html