001package org.kuali.ole.ncip.bo; 002 003import org.codehaus.jackson.annotate.JsonAutoDetect; 004import org.codehaus.jackson.annotate.JsonIgnore; 005import org.codehaus.jackson.annotate.JsonMethod; 006import org.codehaus.jackson.annotate.JsonProperty; 007 008/** 009 * Created with IntelliJ IDEA. 010 * User: sheiksalahudeenm 011 * Date: 9/3/13 012 * Time: 8:52 PM 013 * To change this template use File | Settings | File Templates. 014 */ 015@JsonAutoDetect(JsonMethod.FIELD) 016public class OLERenewItem { 017 018 @JsonProperty("code") 019 private String code; 020 021 @JsonProperty("message") 022 private String message; 023 024 @JsonProperty("pastDueDate") 025 private String pastDueDate; 026 027 @JsonProperty("newDueDate") 028 private String newDueDate; 029 030 @JsonProperty("renewalCount") 031 private String renewalCount; 032 033 @JsonProperty("itemBarcode") 034 private String itemBarcode; 035 036 /*This following fields are only for SIP2*/ 037 @JsonIgnore 038 private String patronBarcode; 039 040 @JsonIgnore 041 private String titleIdentifier; 042 043 @JsonIgnore 044 private String feeType; 045 046 @JsonIgnore 047 private String feeAmount; 048 049 @JsonIgnore 050 private String mediaType; 051 052 @JsonIgnore 053 private String itemProperties; 054 055 @JsonIgnore 056 private String transactionId; 057 /*This above fields are only for SIP2*/ 058 059 public String getCode() { 060 return code; 061 } 062 063 public void setCode(String code) { 064 this.code = code; 065 } 066 067 public String getMessage() { 068 return message; 069 } 070 071 public void setMessage(String message) { 072 this.message = message; 073 } 074 075 public String getPastDueDate() { 076 return pastDueDate; 077 } 078 079 public void setPastDueDate(String pastDueDate) { 080 this.pastDueDate = pastDueDate; 081 } 082 083 public String getNewDueDate() { 084 return newDueDate; 085 } 086 087 public void setNewDueDate(String newDueDate) { 088 this.newDueDate = newDueDate; 089 } 090 091 public String getRenewalCount() { 092 return renewalCount; 093 } 094 095 public void setRenewalCount(String renewalCount) { 096 this.renewalCount = renewalCount; 097 } 098 099 public String getPatronBarcode() { 100 return patronBarcode; 101 } 102 103 public void setPatronBarcode(String patronBarcode) { 104 this.patronBarcode = patronBarcode; 105 } 106 107 public String getItemBarcode() { 108 return itemBarcode; 109 } 110 111 public void setItemBarcode(String itemBarcode) { 112 this.itemBarcode = itemBarcode; 113 } 114 115 public String getTitleIdentifier() { 116 return titleIdentifier; 117 } 118 119 public void setTitleIdentifier(String titleIdentifier) { 120 this.titleIdentifier = titleIdentifier; 121 } 122 123 public String getFeeType() { 124 return feeType; 125 } 126 127 public void setFeeType(String feeType) { 128 this.feeType = feeType; 129 } 130 131 public String getFeeAmount() { 132 return feeAmount; 133 } 134 135 public void setFeeAmount(String feeAmount) { 136 this.feeAmount = feeAmount; 137 } 138 139 public String getMediaType() { 140 return mediaType; 141 } 142 143 public void setMediaType(String mediaType) { 144 this.mediaType = mediaType; 145 } 146 147 public String getItemProperties() { 148 return itemProperties; 149 } 150 151 public void setItemProperties(String itemProperties) { 152 this.itemProperties = itemProperties; 153 } 154 155 public String getTransactionId() { 156 return transactionId; 157 } 158 159 public void setTransactionId(String transactionId) { 160 this.transactionId = transactionId; 161 } 162}