View Javadoc
1   package org.kuali.ole.ingest.pojo;
2   
3   import java.util.List;
4   
5   /**
6    * OlePatronAffiliations is a business object class for Ole Patron Affiliation Document
7    */
8   public class OlePatronAffiliations {
9   
10      private String affiliationType;
11      private String campusCode;
12      private List<OlePatronEmployments> employments;
13      private boolean active;
14  
15  
16  
17      /**
18       * Gets the affiliationType attribute.
19       * @return  Returns the affiliationType.
20       */
21      public String getAffiliationType() {
22          return affiliationType;
23      }
24      /**
25              * Sets the affiliationType attribute value.
26      * @param affiliationType The affiliationType to set.
27      */
28      public void setAffiliationType(String affiliationType) {
29          this.affiliationType = affiliationType;
30      }
31      /**
32       * Gets the campusCode attribute.
33       * @return  Returns the campusCode.
34       */
35      public String getCampusCode() {
36          return campusCode;
37      }
38      /**
39       * Sets the campusCode attribute value.
40       * @param campusCode The campusCode to set.
41       */
42      public void setCampusCode(String campusCode) {
43          this.campusCode = campusCode;
44      }
45      /**
46       * Gets the employments attribute.
47       * @return  Returns the employments.
48       */
49      public List<OlePatronEmployments> getEmployments() {
50          return employments;
51      }
52      /**
53       * Sets the employments attribute value.
54       * @param employments The employments to set.
55       */
56      public void setEmployments(List<OlePatronEmployments> employments) {
57          this.employments = employments;
58      }
59  
60      /**
61       * Gets the active attribute.
62       * @return  Returns the active.
63       */
64      public boolean isActive() {
65          return active;
66      }
67      /**
68       * Sets the active attribute value.
69       * @param active The active to set.
70       */
71      public void setActive(boolean active) {
72          this.active = active;
73      }
74  
75  }