/* * 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.cayenne.om.portlet; import org.apache.cayenne.ObjectId; import com.aimluck.eip.cayenne.om.portlet.auto._EipTMessage; public class EipTMessage extends _EipTMessage { private int unreadCount = 0; private String firstName = null; private String lastName = null; private String hasPhoto = null; private Long photoModified = null; private Integer roomId = null; public Integer getMessageId() { if (getObjectId() != null && !getObjectId().isTemporary()) { Object obj = getObjectId().getIdSnapshot().get(MESSAGE_ID_PK_COLUMN); if (obj instanceof Long) { Long value = (Long) obj; return Integer.valueOf(value.intValue()); } else { return (Integer) obj; } } else { return null; } } public void setMessageId(String id) { setObjectId(new ObjectId("EipTMessage", MESSAGE_ID_PK_COLUMN, Integer .valueOf(id))); } /** * @param intValue */ public void setUnreadCount(int unreadCount) { this.unreadCount = unreadCount; } /** * @return unreadCount */ public Integer getUnreadCount() { return unreadCount; } /** * @param firstName * セットする firstName */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * @return firstName */ public String getFirstName() { return firstName; } /** * @param lastName * セットする lastName */ public void setLastName(String lastName) { this.lastName = lastName; } /** * @return lastName */ public String getLastName() { return lastName; } /** * @param hasPhoto * セットする hasPhoto */ public void setHasPhoto(String hasPhoto) { this.hasPhoto = hasPhoto; } /** * @return hasPhoto */ public String getHasPhoto() { return hasPhoto; } /** * @param photoModified * セットする photoModified */ public void setPhotoModified(Long photoModified) { this.photoModified = photoModified; } /** * @return photoModified */ public Long getPhotoModified() { return photoModified; } /** * @return roomId */ public Integer getRoomId() { return roomId; } /** * @param roomId * セットする roomId */ public void setRoomId(Integer roomId) { this.roomId = roomId; } }