/*
* Copyright (c) 2005-2011 Grameen Foundation USA
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied. See the License for the specific language governing
* permissions and limitations under the License.
*
* See also http://www.apache.org/licenses/LICENSE-2.0.html for an
* explanation of the license and how it is applied.
*/
package org.mifos.dto.screen;
import java.util.List;
import org.mifos.dto.domain.ValueListElement;
public class ClientDropdownsDto {
private final List<ValueListElement> salutations;
private final List<ValueListElement> genders;
private final List<ValueListElement> maritalStatuses;
private final List<ValueListElement> citizenship;
private final List<ValueListElement> ethnicity;
private final List<ValueListElement> educationLevels;
private final List<ValueListElement> businessActivity;
private final List<ValueListElement> poverty;
private final List<ValueListElement> handicapped;
private final List<ValueListElement> livingStatus;
@SuppressWarnings("PMD")
public ClientDropdownsDto(List<ValueListElement> salutations, List<ValueListElement> genders,
List<ValueListElement> maritalStatuses, List<ValueListElement> citizenship,
List<ValueListElement> ethnicity, List<ValueListElement> educationLevels,
List<ValueListElement> businessActivity, List<ValueListElement> poverty,
List<ValueListElement> handicapped, List<ValueListElement> livingStatus) {
this.salutations = salutations;
this.genders = genders;
this.maritalStatuses = maritalStatuses;
this.citizenship = citizenship;
this.ethnicity = ethnicity;
this.educationLevels = educationLevels;
this.businessActivity = businessActivity;
this.poverty = poverty;
this.handicapped = handicapped;
this.livingStatus = livingStatus;
}
public List<ValueListElement> getSalutations() {
return this.salutations;
}
public List<ValueListElement> getGenders() {
return this.genders;
}
public List<ValueListElement> getMaritalStatuses() {
return this.maritalStatuses;
}
public List<ValueListElement> getCitizenship() {
return this.citizenship;
}
public List<ValueListElement> getEthnicity() {
return this.ethnicity;
}
public List<ValueListElement> getEducationLevels() {
return this.educationLevels;
}
public List<ValueListElement> getBusinessActivity() {
return this.businessActivity;
}
public List<ValueListElement> getPoverty() {
return this.poverty;
}
public List<ValueListElement> getHandicapped() {
return this.handicapped;
}
public List<ValueListElement> getLivingStatus() {
return this.livingStatus;
}
}