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

io.sphere.internal.command.UpdateAction Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.internal.command;

/** Update actions are a part of update commands. */
public abstract class UpdateAction {
    public final String action;

    /** @param action The name of the action. */
    public UpdateAction(String action) { this.action = action; }

    /**
     * The name of the action.
     * @return name
     */
    public String getAction() { return action; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy