![JAR search and dependency download from the Maven repository](/logo.png)
org.jivesoftware.openfire.muc.spi.ConversationLogEntry Maven / Gradle / Ivy
The newest version!
/*
* Copyright (C) 2004-2008 Jive Software. 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.
*/
package org.jivesoftware.openfire.muc.spi;
import java.util.Date;
import org.jivesoftware.openfire.muc.MUCRoom;
import org.xmpp.packet.Message;
import org.xmpp.packet.JID;
/**
* Represents an entry in the conversation log of a room. An entry basically obtains the necessary
* information to log from the message adding a timestamp of when the message was sent to the room.
*
* Instances of this class are immutable, and therefor thread safe.
*
* @author Gaston Dombiak
*/
class ConversationLogEntry {
private final Date date;
private final String subject;
private final String body;
private final JID sender;
private final String nickname;
private final String stanza;
private final long roomID;
/**
* Creates a new ConversationLogEntry that registers that a given message was sent to a given
* room on a given date.
*
* @param date the date when the message was sent to the room.
* @param room the room that received the message.
* @param message the message to log as part of the conversation in the room.
* @param sender the real XMPPAddress of the sender (e.g. [email protected]).
*/
public ConversationLogEntry(Date date, MUCRoom room, Message message, JID sender) {
this.date = date;
this.subject = message.getSubject();
this.body = message.getBody();
this.stanza = message.toString();
this.sender = sender;
this.roomID = room.getID();
this.nickname = message.getFrom().getResource();
}
/**
* Returns the body of the logged message.
*
* @return the body of the logged message.
*/
public String getBody() {
return body;
}
/**
* Returns the XMPP address of the logged message's sender.
*
* @return the XMPP address of the logged message's sender.
*/
public JID getSender() {
return sender;
}
/**
* Returns the nickname that the user had at the moment that the message was sent to the room.
*
* @return the nickname that the user had at the moment that the message was sent to the room.
*/
public String getNickname() {
return nickname;
}
/**
* Returns the subject of the logged message.
*
* @return the subject of the logged message.
*/
public String getSubject() {
return subject;
}
/**
* Returns the date when the logged message was sent to the room.
*
* @return the date when the logged message was sent to the room.
*/
public Date getDate() {
return date;
}
/**
* Returns the ID of the room where the message was sent.
*
* @return the ID of the room where the message was sent.
*/
public long getRoomID() {
return roomID;
}
/**
* Returns the string representation of the message.
*
* @return string representation of the stanza.
*/
public String getStanza() { return stanza; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy