/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 de.unioninvestment.eai.portal.portlet.crud; import java.io.Serializable; import java.util.Date; public class Row implements Serializable { /** * */ private static final long serialVersionUID = 42L; private Integer id; private String text; private String text2; private Date date1; public Row(Integer id, String text, String text2, Date date1) { super(); this.id = id; this.text = text; this.text2 = text2; this.date1 = date1; } public Integer getId() { return id; } public String getText() { return text; } public void setText(String text) { this.text = text; } @Override public String toString() { return "Row [id=" + id + ", text=" + text + "]"; } public String getText2() { return text2; } public void setText2(String text2) { this.text2 = text2; } public Date getDate1() { return date1; } public void setDate1(Date date1) { this.date1 = date1; } }