001package org.kuali.ole.pojo; 002 003import java.util.ArrayList; 004import java.util.List; 005 006/** 007 * Created with IntelliJ IDEA. 008 * User: sundarr 009 * Date: 7/3/13 010 * Time: 12:51 PM 011 * To change this template use File | Settings | File Templates. 012 */ 013public class OLESerialReceivingRecord { 014 private String serialReceivingRecordId; 015 private String boundLocation; 016 private String callNumber; 017 private String issn; 018 private String title; 019 private String unboundLocation; 020 private String subscriptionStatus; 021 private String checkInWorkUnit; 022 private String action; 023 private String bibId; 024 private String href; 025 private String instanceId; 026 private String staffOnlyFlag; 027 private String staffOnlyFlagStyle; 028 029 public String getStaffOnlyFlagStyle() { 030 return staffOnlyFlagStyle; 031 } 032 033 public void setStaffOnlyFlagStyle(String staffOnlyFlagStyle) { 034 this.staffOnlyFlagStyle = staffOnlyFlagStyle; 035 } 036 037 public String getStaffOnlyFlag() { 038 return staffOnlyFlag; 039 } 040 041 public void setStaffOnlyFlag(String staffOnlyFlag) { 042 this.staffOnlyFlag = staffOnlyFlag; 043 } 044 045 public String getBibId() { 046 return bibId; 047 } 048 049 public void setBibId(String bibId) { 050 this.bibId = bibId; 051 } 052 053 public String getInstanceId() { 054 return instanceId; 055 } 056 057 public void setInstanceId(String instanceId) { 058 this.instanceId = instanceId; 059 } 060 061 public String getHref() { 062 return href; 063 } 064 065 public void setHref(String href) { 066 this.href = href; 067 } 068 069 public String getAction() { 070 return action; 071 } 072 073 public void setAction(String action) { 074 this.action = action; 075 } 076 077 public String getSerialReceivingRecordId() { 078 return serialReceivingRecordId; 079 } 080 081 public void setSerialReceivingRecordId(String serialReceivingRecordId) { 082 this.serialReceivingRecordId = serialReceivingRecordId; 083 } 084 085 public String getBoundLocation() { 086 return boundLocation; 087 } 088 089 public void setBoundLocation(String boundLocation) { 090 this.boundLocation = boundLocation; 091 } 092 093 public String getTitle() { 094 return title; 095 } 096 097 public void setTitle(String title) { 098 this.title = title; 099 } 100 101 public String getIssn() { 102 return issn; 103 } 104 105 public void setIssn(String issn) { 106 this.issn = issn; 107 } 108 109 public String getCallNumber() { 110 return callNumber; 111 } 112 113 public void setCallNumber(String callNumber) { 114 this.callNumber = callNumber; 115 } 116 117 public String getUnboundLocation() { 118 return unboundLocation; 119 } 120 121 public void setUnboundLocation(String unboundLocation) { 122 this.unboundLocation = unboundLocation; 123 } 124 125 public String getSubscriptionStatus() { 126 return subscriptionStatus; 127 } 128 129 public void setSubscriptionStatus(String subscriptionStatus) { 130 this.subscriptionStatus = subscriptionStatus; 131 } 132 133 public String getCheckInWorkUnit() { 134 return checkInWorkUnit; 135 } 136 137 public void setCheckInWorkUnit(String checkInWorkUnit) { 138 this.checkInWorkUnit = checkInWorkUnit; 139 } 140}