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

org.drools.grid.internal.commands.SimpleCommand Maven / Gradle / Ivy

There is a newer version: 5.6.0.Final
Show newest version
package org.drools.grid.internal.commands;

import java.io.Serializable;
import java.util.List;

public class SimpleCommand
    implements
    Serializable {

    private int               id;

    private SimpleCommandName name;

    private List      arguments;

    public SimpleCommand(int id,
                         SimpleCommandName name,
                         List arguments) {
        super();
        this.id = id;
        this.arguments = arguments;
        this.name = name;
    }

    public int getId() {
        return this.id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public SimpleCommandName getName() {
        return this.name;
    }

    public void setName(SimpleCommandName name) {
        this.name = name;
    }

    public List getArguments() {
        return this.arguments;
    }

    public void setArguments(List arguments) {
        this.arguments = arguments;
    }

}