001package org.kuali.ole.ingest.pojo; 002 003/** 004 * OlePatronLevelPolicies is a business object class for Ole Patron Level Policies Document 005 */ 006public class OlePatronLevelPolicies { 007 008 private boolean isGenerallyBlocked; 009 private boolean hasDeliveryPrivilege; 010 private String generalBlockNotes; 011 private boolean hasPagingPrivilege; 012 private boolean receivesCourtesyNotice; 013 /** 014 * Gets the generallyBlocked attribute. 015 * @return Returns the generallyBlocked. 016 */ 017 public boolean isGenerallyBlocked() { 018 return isGenerallyBlocked; 019 } 020 /** 021 * Sets the generallyBlocked attribute value. 022 * @param generallyBlocked The generallyBlocked to set. 023 */ 024 public void setGenerallyBlocked(boolean generallyBlocked) { 025 isGenerallyBlocked = generallyBlocked; 026 } 027 /** 028 * Gets the hasDeliveryPrivilege attribute. 029 * @return Returns the hasDeliveryPrivilege. 030 */ 031 public boolean isHasDeliveryPrivilege() { 032 return hasDeliveryPrivilege; 033 } 034 /** 035 * Sets the hasDeliveryPrivilege attribute value. 036 * @param hasDeliveryPrivilege The hasDeliveryPrivilege to set. 037 */ 038 public void setHasDeliveryPrivilege(boolean hasDeliveryPrivilege) { 039 this.hasDeliveryPrivilege = hasDeliveryPrivilege; 040 } 041 /** 042 * Gets the hasPagingPrivilege attribute. 043 * @return Returns the hasPagingPrivilege. 044 */ 045 public boolean isHasPagingPrivilege() { 046 return hasPagingPrivilege; 047 } 048 /** 049 * Sets the hasPagingPrivilege attribute value. 050 * @param hasPagingPrivilege The hasPagingPrivilege to set. 051 */ 052 public void setHasPagingPrivilege(boolean hasPagingPrivilege) { 053 this.hasPagingPrivilege = hasPagingPrivilege; 054 } 055 /** 056 * Gets the receivesCourtesyNotice attribute. 057 * @return Returns the receivesCourtesyNotice. 058 */ 059 public boolean isReceivesCourtesyNotice() { 060 return receivesCourtesyNotice; 061 } 062 /** 063 * Sets the receivesCourtesyNotice attribute value. 064 * @param receivesCourtesyNotice The receivesCourtesyNotice to set. 065 */ 066 public void setReceivesCourtesyNotice(boolean receivesCourtesyNotice) { 067 this.receivesCourtesyNotice = receivesCourtesyNotice; 068 } 069 /** 070 * Gets the generalBlockNotes attribute. 071 * @return Returns the generalBlockNotes. 072 */ 073 public String getGeneralBlockNotes() { 074 return generalBlockNotes; 075 } 076 /** 077 * Sets the generalBlockNotes attribute value. 078 * @param generalBlockNotes The generalBlockNotes to set. 079 */ 080 public void setGeneralBlockNotes(String generalBlockNotes) { 081 this.generalBlockNotes = generalBlockNotes; 082 } 083}