PurchaseSeatingRequest.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 PurchaseSeatingRequest implements Serializable {
private static final long serialVersionUID = 2026051801L;
private String section;
private String row;
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;
}
@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);
}
}