/* * Copyright 2017 Red Hat, Inc. and/or its affiliates. * * 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. */ package org.kie.workbench.common.forms.adf.engine.shared.formGeneration.model; import java.util.ArrayList; import java.util.Date; import java.util.List; public class Person { private String name; private String lastName; private Date birthDay; private Boolean married; private Height height; private Weight weight; private Address address; private List<Weapon> weapons = new ArrayList<>(); public String getName() { return name; } public void setName(String name) { this.name = name; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public Date getBirthDay() { return birthDay; } public void setBirthDay(Date birthDay) { this.birthDay = birthDay; } public Boolean getMarried() { return married; } public void setMarried(Boolean married) { this.married = married; } public Height getHeight() { return height; } public void setHeight(Height height) { this.height = height; } public Weight getWeight() { return weight; } public void setWeight(Weight weight) { this.weight = weight; } public Address getAddress() { return address; } public void setAddress(Address address) { this.address = address; } public List<Weapon> getWeapons() { return weapons; } public void setWeapons(List<Weapon> weapons) { this.weapons = weapons; } }