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

org.drools.task.service.Command Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.task.service;

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

public class Command implements Serializable {
    
    private int id;
    
    private CommandName name;    
    
    private List arguments;
    
    public Command(int id, CommandName name, List arguments) {
        super();
        this.id = id;
        this.arguments = arguments;
        this.name = name;
    }
    
    
    
    public int getId() {
        return id;
    }



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



    public CommandName getName() {
        return name;
    }
    public void setName(CommandName name) {
        this.name = name;
    }
    public List getArguments() {
        return arguments;
    }
    public void setArguments(List arguments) {
        this.arguments = arguments;
    }
            
}