001package org.kuali.ole.ingest.krms.pojo;
002
003
004import java.util.List;
005
006/**
007 * Created with IntelliJ IDEA.
008 * User: vivekb
009 * Date: 7/20/12
010 * Time: 11:48 AM
011 * To change this template use File | Settings | File Templates.
012 */
013public class OleKrmsAction {
014    private String name;
015    private List<OleParameter> parameters;
016  //  private List<OleKrmsAction> krmsActions;
017
018    /**
019     * Gets the oleAgendaList attribute.
020     * @return  Returns the oleAgendaList.
021     */
022    public String getName() {
023        return name;
024    }
025    /**
026     * Sets the name attribute value.
027     * @param name  The name to set.
028     */
029    public void setName(String name) {
030        this.name = name;
031    }
032
033    public List<OleParameter> getParameters() {
034        return parameters;
035    }
036
037    public void setParameters(List<OleParameter> parameters) {
038        this.parameters = parameters;
039    }
040
041    /*  *//**
042     * Gets the krmsActions attribute.
043     * @return  Returns the krmsActions.
044     *//*
045    public List<OleKrmsAction> getKrmsActions() {
046        return krmsActions;
047    }
048    *//**
049     * Sets the krmsActions attribute value.
050     * @param krmsActions  The krmsActions to set.
051     *//*
052    public void setKrmsActions(List<OleKrmsAction> krmsActions) {
053        this.krmsActions = krmsActions;
054    }*/
055}