001package org.kuali.ole.ingest.pojo;
002
003import java.util.List;
004
005/**
006 * OlePatronAffiliations is a business object class for Ole Patron Affiliation Document
007 */
008public class OlePatronAffiliations {
009
010    private String affiliationType;
011    private String campusCode;
012    private List<OlePatronEmployments> employments;
013    private boolean active;
014
015
016
017    /**
018     * Gets the affiliationType attribute.
019     * @return  Returns the affiliationType.
020     */
021    public String getAffiliationType() {
022        return affiliationType;
023    }
024    /**
025            * Sets the affiliationType attribute value.
026    * @param affiliationType The affiliationType to set.
027    */
028    public void setAffiliationType(String affiliationType) {
029        this.affiliationType = affiliationType;
030    }
031    /**
032     * Gets the campusCode attribute.
033     * @return  Returns the campusCode.
034     */
035    public String getCampusCode() {
036        return campusCode;
037    }
038    /**
039     * Sets the campusCode attribute value.
040     * @param campusCode The campusCode to set.
041     */
042    public void setCampusCode(String campusCode) {
043        this.campusCode = campusCode;
044    }
045    /**
046     * Gets the employments attribute.
047     * @return  Returns the employments.
048     */
049    public List<OlePatronEmployments> getEmployments() {
050        return employments;
051    }
052    /**
053     * Sets the employments attribute value.
054     * @param employments The employments to set.
055     */
056    public void setEmployments(List<OlePatronEmployments> employments) {
057        this.employments = employments;
058    }
059
060    /**
061     * Gets the active attribute.
062     * @return  Returns the active.
063     */
064    public boolean isActive() {
065        return active;
066    }
067    /**
068     * Sets the active attribute value.
069     * @param active The active to set.
070     */
071    public void setActive(boolean active) {
072        this.active = active;
073    }
074
075}