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

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

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

/** Common fields for commands working against a versioned aggregate root. */
public abstract class CommandBase implements Command {
    private final String id;
    private final int version;

    protected CommandBase(String id, int version) {
        this.id = id;
        this.version = version;
    }

    public String getId() { return id; }
    public int getVersion() { return version; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy