Source code: org/ahlner/Log4J2DB/beans/LogEventHome.java
1 /*
2 * Generated by XDoclet - Do not edit!
3 */
4 package org.ahlner.Log4J2DB.beans;
5
6 /**
7 * Home interface for LogEvent.
8 */
9 public interface LogEventHome
10 extends javax.ejb.EJBHome
11 {
12 public static final String COMP_NAME="java:comp/env/ejb/LogEvent";
13 public static final String JNDI_NAME="ejb/LogEvent";
14
15 public org.ahlner.Log4J2DB.beans.LogEventRemote create(java.lang.String hostname , java.lang.String logger , java.lang.Float timeStamp , java.lang.String priority , java.lang.String message)
16 throws javax.ejb.CreateException,java.rmi.RemoteException;
17
18 public java.util.Collection findAll()
19 throws javax.ejb.FinderException,java.rmi.RemoteException;
20
21 public java.util.Collection findByParams(java.lang.String hostname, java.lang.String logger, java.lang.String priority, java.lang.Float fromTime, java.lang.Float toTime)
22 throws javax.ejb.FinderException,java.rmi.RemoteException;
23
24 public java.util.Collection findByParams(java.lang.String hostname, java.lang.String priority, java.lang.Float fromTime, java.lang.Float toTime)
25 throws javax.ejb.FinderException,java.rmi.RemoteException;
26
27 public org.ahlner.Log4J2DB.beans.LogEventRemote findByPrimaryKey(org.ahlner.Log4J2DB.beans.LogEventPK pk)
28 throws javax.ejb.FinderException,java.rmi.RemoteException;
29
30 public java.util.Collection getByParams(java.lang.String hostname,java.lang.Float fromTime,java.lang.Float toTime,java.lang.String priority,java.lang.String message)
31 throws javax.ejb.FinderException, java.rmi.RemoteException;
32
33 public java.lang.String getEventCount()
34 throws java.rmi.RemoteException;
35
36 public java.util.Collection getHosts()
37 throws javax.ejb.FinderException, java.rmi.RemoteException;
38
39 public java.util.Collection getLoggers()
40 throws javax.ejb.FinderException, java.rmi.RemoteException;
41
42 public java.util.Collection getPriorities()
43 throws javax.ejb.FinderException, java.rmi.RemoteException;
44
45 }