/* * Aipo is a groupware program developed by TOWN, Inc. * Copyright (C) 2004-2015 TOWN, Inc. * http://www.aipo.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.aimluck.eip.blog; import com.aimluck.commons.field.ALNumberField; import com.aimluck.commons.field.ALStringField; import com.aimluck.eip.common.ALData; /** * ブログエントリーのあしあとのResultDataです。 <BR> * */ public class BlogFootmarkResultData implements ALData { /** Owner ID */ private ALNumberField user_id; /** Owner 名 */ private ALStringField user_name; /** 更新日 */ private ALStringField update_date; /** * * */ public void initField() { user_id = new ALNumberField(); user_name = new ALStringField(); update_date = new ALStringField(); } /** * @return */ public ALNumberField getUserId() { return user_id; } /** * @return */ public ALStringField getUserName() { return user_name; } /** * @param i */ public void setUserId(long i) { user_id.setValue(i); } /** * @param string */ public void setUserName(String string) { user_name.setValue(string); } /** * @return */ public ALStringField getUpdateDate() { return update_date; } /** * @param string */ public void setUpdateDate(String string) { update_date.setValue(string); } }