1 package org.kuali.ole.ingest.krms.pojo;
2
3
4 import java.util.List;
5
6 /**
7 * Created with IntelliJ IDEA.
8 * User: vivekb
9 * Date: 7/20/12
10 * Time: 11:48 AM
11 * To change this template use File | Settings | File Templates.
12 */
13 public class OleKrmsAction {
14 private String name;
15 private List<OleParameter> parameters;
16 // private List<OleKrmsAction> krmsActions;
17
18 /**
19 * Gets the oleAgendaList attribute.
20 * @return Returns the oleAgendaList.
21 */
22 public String getName() {
23 return name;
24 }
25 /**
26 * Sets the name attribute value.
27 * @param name The name to set.
28 */
29 public void setName(String name) {
30 this.name = name;
31 }
32
33 public List<OleParameter> getParameters() {
34 return parameters;
35 }
36
37 public void setParameters(List<OleParameter> parameters) {
38 this.parameters = parameters;
39 }
40
41 /* *//**
42 * Gets the krmsActions attribute.
43 * @return Returns the krmsActions.
44 *//*
45 public List<OleKrmsAction> getKrmsActions() {
46 return krmsActions;
47 }
48 *//**
49 * Sets the krmsActions attribute value.
50 * @param krmsActions The krmsActions to set.
51 *//*
52 public void setKrmsActions(List<OleKrmsAction> krmsActions) {
53 this.krmsActions = krmsActions;
54 }*/
55 }