SectionMappingResponse.java
package org.oxerr.stubhub.client.model;
import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.commons.lang3.builder.ToStringBuilder;
public class SectionMappingResponse implements Serializable {
private static final long serialVersionUID = 2026051801L;
private String section;
private String row;
private String mappedSection;
private Integer sectionId;
public String getSection() {
return section;
}
public void setSection(String section) {
this.section = section;
}
public String getRow() {
return row;
}
public void setRow(String row) {
this.row = row;
}
public String getMappedSection() {
return mappedSection;
}
public void setMappedSection(String mappedSection) {
this.mappedSection = mappedSection;
}
public Integer getSectionId() {
return sectionId;
}
public void setSectionId(Integer sectionId) {
this.sectionId = sectionId;
}
@Override
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
@Override
public boolean equals(Object obj) {
return EqualsBuilder.reflectionEquals(this, obj);
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}