KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > compiere > interfaces > Status


1 /*
2  * Generated file - Do not edit!
3  */

4 package org.compiere.interfaces;
5
6 import java.lang.*;
7 import java.util.*;
8 import java.sql.*;
9 import org.compiere.interfaces.*;
10 import org.compiere.db.*;
11 import org.compiere.model.*;
12 import org.compiere.util.*;
13 import java.rmi.RemoteException JavaDoc;
14 import javax.ejb.CreateException JavaDoc;
15 import javax.ejb.EJBException JavaDoc;
16 import javax.ejb.FinderException JavaDoc;
17 import javax.ejb.RemoveException JavaDoc;
18 import javax.ejb.SessionBean JavaDoc;
19 import javax.ejb.SessionContext JavaDoc;
20 import javax.naming.Context JavaDoc;
21 import javax.naming.InitialContext JavaDoc;
22 import javax.naming.NamingException JavaDoc;
23 import javax.rmi.PortableRemoteObject JavaDoc;
24 import org.apache.log4j.Logger;
25 import org.compiere.Compiere;
26
27 /**
28  * Remote interface for compiere/Status.
29  * @author XDOCLET 1.1.2
30  * @version XDOCLET 1.1.2 * @xdoclet-generated at Nov 7, 2003 1:05:48 PM
31  */

32 public interface Status
33    extends javax.ejb.EJBObject JavaDoc
34 {
35    /**
36     * Get Database Count
37     * @return number of database inquiries */

38    public int getDatabaseCount( ) throws java.rmi.RemoteException JavaDoc;
39
40    /**
41     * Get Version (Date)
42     * @return version e.g. 2002-09-02
43     * @throws RemoteException */

44    public java.lang.String JavaDoc getDateVersion( ) throws java.rmi.RemoteException JavaDoc;
45
46    /**
47     * Get Database Host
48     * @return Database Host Name
49     * @throws RemoteException */

50    public java.lang.String JavaDoc getDbHost( ) throws java.rmi.RemoteException JavaDoc;
51
52    /**
53     * Get Database SID
54     * @return Database SID
55     * @throws RemoteException */

56    public java.lang.String JavaDoc getDbName( ) throws java.rmi.RemoteException JavaDoc;
57
58    /**
59     * Get Database Port
60     * @return Database Posrt
61     * @throws RemoteException */

62    public int getDbPort( ) throws java.rmi.RemoteException JavaDoc;
63
64    /**
65     * Get Database PWD
66     * @return Database User Password
67     * @throws RemoteException */

68    public java.lang.String JavaDoc getDbPwd( ) throws java.rmi.RemoteException JavaDoc;
69
70    /**
71     * Get Database UID
72     * @return Database User Name
73     * @throws RemoteException */

74    public java.lang.String JavaDoc getDbUid( ) throws java.rmi.RemoteException JavaDoc;
75
76    /**
77     * Get Connection Manager Host
78     * @return Connection Manager Host
79     * @throws RemoteException */

80    public java.lang.String JavaDoc getFwHost( ) throws java.rmi.RemoteException JavaDoc;
81
82    /**
83     * Get Connection Manager Port
84     * @return Connection Manager Port
85     * @throws RemoteException */

86    public int getFwPort( ) throws java.rmi.RemoteException JavaDoc;
87
88    /**
89     * Get Main Version
90     * @return main version - e.g. Version 2.4.3b
91     * @throws RemoteException */

92    public java.lang.String JavaDoc getMainVersion( ) throws java.rmi.RemoteException JavaDoc;
93
94    /**
95     * Describes the instance and its content for debugging purpose
96     * @return Debugging information about the instance and its content */

97    public java.lang.String JavaDoc getStatus( ) throws java.rmi.RemoteException JavaDoc;
98
99    /**
100     * Get Version Count
101     * @return number of version inquiries */

102    public int getVersionCount( ) throws java.rmi.RemoteException JavaDoc;
103
104 }
105
Popular Tags