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

com.marklogic.appdeployer.command.Command Maven / Gradle / Ivy

Go to download

Java client for the MarkLogic REST Management API and for deploying applications to MarkLogic

There is a newer version: 5.0.0
Show newest version
package com.marklogic.appdeployer.command;


/**
 * A command is used to provide behavior when creating an application; it keeps the AppDeployer instance from being
 * tightly coupled to all the things a developer may want to happen.
 */
public interface Command {

    /**
     * Configure the application in some way.
     * 
     * @param context
     */
    public void execute(CommandContext context);

    /**
     * Return a number corresponding to the order in which this command should execute when an application is being
     * deployed, where the lower the number, the earlier the command is invoked.
     */
    public Integer getExecuteSortOrder();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy