Source code: org/ahlner/Log4J2DB/beans/LogEventLocalHome.java
1 /*
2 * Generated by XDoclet - Do not edit!
3 */
4 package org.ahlner.Log4J2DB.beans;
5
6 /**
7 * Local home interface for LogEvent.
8 */
9 public interface LogEventLocalHome
10 extends javax.ejb.EJBLocalHome
11 {
12 public static final String COMP_NAME="java:comp/env/ejb/LogEventLocal";
13 public static final String JNDI_NAME="LogEventLocal";
14
15 public org.ahlner.Log4J2DB.beans.LogEventLocal 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;
17
18 public java.util.Collection findAll()
19 throws javax.ejb.FinderException;
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;
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;
26
27 public org.ahlner.Log4J2DB.beans.LogEventLocal findByPrimaryKey(org.ahlner.Log4J2DB.beans.LogEventPK pk)
28 throws javax.ejb.FinderException;
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) throws javax.ejb.FinderException;
31
32 public java.lang.String getEventCount() ;
33
34 public java.util.Collection getHosts() throws javax.ejb.FinderException;
35
36 public java.util.Collection getLoggers() throws javax.ejb.FinderException;
37
38 public java.util.Collection getPriorities() throws javax.ejb.FinderException;
39
40 }