View Javadoc

1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * KrmsAction is a business object class for Krms Action
7    */
8   public class KrmsAction {
9       private String name;
10      private String description;
11      private Integer sequenceNumber;
12      private String serviceName;
13      private List<KrmsAction> krmsActions;
14  
15      /**
16       * Gets the oleAgendaList attribute.
17       * @return  Returns the oleAgendaList.
18       */
19      public String getName() {
20          return name;
21      }
22      /**
23       * Sets the name attribute value.
24       * @param name  The name to set.
25       */
26      public void setName(String name) {
27          this.name = name;
28      }
29      /**
30       * Gets the description attribute.
31       * @return  Returns the description.
32       */
33      public String getDescription() {
34          return description;
35      }
36      /**
37       * Sets the description attribute value.
38       * @param description  The description to set.
39       */
40      public void setDescription(String description) {
41          this.description = description;
42      }
43      /**
44       * Gets the sequenceNumber attribute.
45       * @return  Returns the sequenceNumber.
46       */
47      public Integer getSequenceNumber() {
48          return sequenceNumber;
49      }
50      /**
51       * Sets the sequenceNumber attribute value.
52       * @param sequenceNumber  The sequenceNumber to set.
53       */
54      public void setSequenceNumber(Integer sequenceNumber) {
55          this.sequenceNumber = sequenceNumber;
56      }
57      /**
58       * Gets the serviceName attribute.
59       * @return  Returns the serviceName.
60       */
61      public String getServiceName() {
62          return serviceName;
63      }
64      /**
65       * Sets the serviceName attribute value.
66       * @param serviceName  The serviceName to set.
67       */
68      public void setServiceName(String serviceName) {
69          this.serviceName = serviceName;
70      }
71      /**
72       * Gets the krmsActions attribute.
73       * @return  Returns the krmsActions.
74       */
75      public List<KrmsAction> getKrmsActions() {
76          return krmsActions;
77      }
78      /**
79       * Sets the krmsActions attribute value.
80       * @param krmsActions  The krmsActions to set.
81       */
82      public void setKrmsActions(List<KrmsAction> krmsActions) {
83          this.krmsActions = krmsActions;
84      }
85  }