Commit e6292c62 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Removed unused classes.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@38 b35dd754-fafc-0310-a699-88a17e54d16e
parent a4521729
/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 2004 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.messenger.audit;
import org.jivesoftware.messenger.Message;
import org.jivesoftware.messenger.Session;
import org.jivesoftware.messenger.SessionResultFilter;
import org.jivesoftware.messenger.StreamID;
import java.util.Date;
import java.util.Iterator;
public interface AuditProvider {
StreamID createSession();
void updateSession(Session session);
int getSessionCount();
Iterator getSessions(SessionResultFilter filter);
void addEvent(AuditEvent event);
int getEventCount();
Iterator getEvents(EventResultFilter filter);
long createChat(Message packet);
void updateChat(long chatID, Message packet);
int getChatCount();
Iterator getChats(ChatResultFilter filter);
void archive(Date date);
void archive(Date startDate, Date stopDate);
void delete(Date date);
}
\ No newline at end of file
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
* $Revision$ * $Revision$
* $Date$ * $Date$
* *
* Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved. * Copyright (C) 2004 Jive Software. All rights reserved.
* *
* This software is the proprietary information of CoolServlets, Inc. * This software is published under the terms of the GNU Public License (GPL),
* Use is subject to license terms. * a copy of which is included in this distribution.
*/ */
package org.jivesoftware.messenger.audit; package org.jivesoftware.messenger.audit;
import org.jivesoftware.messenger.StreamID; import org.jivesoftware.messenger.StreamID;
......
/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved.
*
* This software is the proprietary information of CoolServlets, Inc.
* Use is subject to license terms.
*/
package org.jivesoftware.messenger.audit;
public interface ChatResultFilter {
}
/**
* $RCSfile$
* $Revision$
* $Date$
*
* Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved.
*
* This software is the proprietary information of CoolServlets, Inc.
* Use is subject to license terms.
*/
package org.jivesoftware.messenger.audit;
public interface EventResultFilter {
}
...@@ -3,11 +3,12 @@ ...@@ -3,11 +3,12 @@
* $Revision$ * $Revision$
* $Date$ * $Date$
* *
* Copyright (C) 1999-2003 CoolServlets, Inc. All rights reserved. * Copyright (C) 2004 Jive Software. All rights reserved.
* *
* This software is the proprietary information of CoolServlets, Inc. * This software is published under the terms of the GNU Public License (GPL),
* Use is subject to license terms. * a copy of which is included in this distribution.
*/ */
package org.jivesoftware.messenger.audit; package org.jivesoftware.messenger.audit;
import org.jivesoftware.messenger.Session; import org.jivesoftware.messenger.Session;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment