001package org.kuali.ole.loaders.describe.bo; 002 003import org.codehaus.jackson.annotate.JsonAutoDetect; 004import org.codehaus.jackson.annotate.JsonMethod; 005import org.codehaus.jackson.annotate.JsonProperty; 006 007import javax.xml.bind.annotation.XmlAccessType; 008import javax.xml.bind.annotation.XmlAccessorType; 009import javax.xml.bind.annotation.XmlElement; 010import javax.xml.bind.annotation.XmlRootElement; 011import java.util.Date; 012 013/** 014 * Created by sheiksalahudeenm on 2/16/15. 015 */ 016@XmlRootElement(name = "oleShelvingScheme") 017@XmlAccessorType(XmlAccessType.FIELD) 018@JsonAutoDetect(JsonMethod.FIELD) 019public class OLEShelvingSchemeBo { 020 021 @XmlElement 022 @JsonProperty 023 private Integer shelvingSchemeId; 024 025 @XmlElement 026 @JsonProperty 027 private String shelvingSchemeCode; 028 029 @XmlElement 030 @JsonProperty 031 private String shelvingSchemeName; 032 033 @XmlElement 034 @JsonProperty 035 private String source; 036 037 @XmlElement 038 @JsonProperty 039 private Date sourceDate; 040 041 @XmlElement 042 @JsonProperty 043 private boolean active; 044 045 public Integer getShelvingSchemeId() { 046 return shelvingSchemeId; 047 } 048 049 public void setShelvingSchemeId(Integer shelvingSchemeId) { 050 this.shelvingSchemeId = shelvingSchemeId; 051 } 052 053 public String getShelvingSchemeCode() { 054 return shelvingSchemeCode; 055 } 056 057 public void setShelvingSchemeCode(String shelvingSchemeCode) { 058 this.shelvingSchemeCode = shelvingSchemeCode; 059 } 060 061 public String getShelvingSchemeName() { 062 return shelvingSchemeName; 063 } 064 065 public void setShelvingSchemeName(String shelvingSchemeName) { 066 this.shelvingSchemeName = shelvingSchemeName; 067 } 068 069 public String getSource() { 070 return source; 071 } 072 073 public void setSource(String source) { 074 this.source = source; 075 } 076 077 public Date getSourceDate() { 078 return sourceDate; 079 } 080 081 public void setSourceDate(Date sourceDate) { 082 this.sourceDate = sourceDate; 083 } 084 085 public boolean isActive() { 086 return active; 087 } 088 089 public void setActive(boolean active) { 090 this.active = active; 091 } 092}