/** * The MIT License * * Copyright (c) 2017, Mahmoud Ben Hassine (mahmoud.benhassine@icloud.com) * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.easybatch.flatfile; import java.util.Date; public class Complaint { private int id; private String product; private String subProduct; private String issue; private String subIssue; private String state; private String zipCode; private Channel channel; private Date receivedDate; private Date sentDate; private String company; private String companyResponse; private boolean timelyResponse; private boolean consumerDisputed; public Channel getChannel() { return channel; } public void setChannel(Channel channel) { this.channel = channel; } public int getId() { return id; } public void setId(int id) { this.id = id; } public String getProduct() { return product; } public void setProduct(String product) { this.product = product; } public String getSubProduct() { return subProduct; } public void setSubProduct(String subProduct) { this.subProduct = subProduct; } public String getIssue() { return issue; } public void setIssue(String issue) { this.issue = issue; } public String getSubIssue() { return subIssue; } public void setSubIssue(String subIssue) { this.subIssue = subIssue; } public String getState() { return state; } public void setState(String state) { this.state = state; } public String getZipCode() { return zipCode; } public void setZipCode(String zipCode) { this.zipCode = zipCode; } public Date getReceivedDate() { return receivedDate; } public void setReceivedDate(Date receivedDate) { this.receivedDate = receivedDate; } public Date getSentDate() { return sentDate; } public void setSentDate(Date sentDate) { this.sentDate = sentDate; } public String getCompany() { return company; } public void setCompany(String company) { this.company = company; } public String getCompanyResponse() { return companyResponse; } public void setCompanyResponse(String companyResponse) { this.companyResponse = companyResponse; } public boolean isTimelyResponse() { return timelyResponse; } public void setTimelyResponse(boolean timelyResponse) { this.timelyResponse = timelyResponse; } public boolean isConsumerDisputed() { return consumerDisputed; } public void setConsumerDisputed(boolean consumerDisputed) { this.consumerDisputed = consumerDisputed; } }