View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * OleProposition is a business object class for Ole Proposition
7    */
8   public class OleProposition {
9       private String propositionType;
10      private List<KrmsProposition> propositions;
11      private List<OleProposition> olePropositions;
12      /**
13       * Gets the olePropositions attribute.
14       * @return  Returns the olePropositions.
15       */
16      public List<OleProposition> getOlePropositions() {
17          return olePropositions;
18      }
19      /**
20       * Sets the olePropositions attribute value.
21       * @param olePropositions The olePropositions to set.
22       */
23      public void setOlePropositions(List<OleProposition> olePropositions) {
24          this.olePropositions = olePropositions;
25      }
26      /**
27       * Gets the propositions attribute.
28       * @return  Returns the propositions.
29       */
30      public List<KrmsProposition> getPropositions() {
31          return propositions;
32      }
33      /**
34       * Sets the olePropositions attribute value.
35       * @param propositions The propositions to set.
36       */
37      public void setPropositions(List<KrmsProposition> propositions) {
38          this.propositions = propositions;
39      }
40      /**
41       * Gets the propositionType attribute.
42       * @return  Returns the propositionType.
43       */
44      public String getPropositionType() {
45          return propositionType;
46      }
47      /**
48       * Sets the propositionType attribute value.
49       * @param propositionType The propositionType to set.
50       */
51      public void setPropositionType(String propositionType) {
52          this.propositionType = propositionType;
53      }
54  }