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

org.drools.client.KnowledgeBaseCommand Maven / Gradle / Ivy

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

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

public class KnowledgeBaseCommand implements Serializable {
    
    private int id;
    
    private KnowledgeBaseCommandName name;    
    
    private List arguments;
    
    public KnowledgeBaseCommand(int id, KnowledgeBaseCommandName 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 KnowledgeBaseCommandName getName() {
        return name;
    }
    public void setName(KnowledgeBaseCommandName name) {
        this.name = name;
    }
    public List getArguments() {
        return arguments;
    }
    public void setArguments(List arguments) {
        this.arguments = arguments;
    }
            
}