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 ;14 import javax.ejb.CreateException ;15 import javax.ejb.EJBException ;16 import javax.ejb.FinderException ;17 import javax.ejb.RemoveException ;18 import javax.ejb.SessionBean ;19 import javax.ejb.SessionContext ;20 import javax.naming.Context ;21 import javax.naming.InitialContext ;22 import javax.naming.NamingException ;23 import javax.rmi.PortableRemoteObject ;24 import org.apache.log4j.Logger;25 import org.compiere.Compiere;26 27 /**28 * Remote interface for compiere/Status.29 * @author XDOCLET 1.1.230 * @version XDOCLET 1.1.2 * @xdoclet-generated at Nov 7, 2003 1:05:48 PM31 */32 public interface Status33 extends javax.ejb.EJBObject 34 {35 /**36 * Get Database Count37 * @return number of database inquiries */38 public int getDatabaseCount( ) throws java.rmi.RemoteException ;39 40 /**41 * Get Version (Date)42 * @return version e.g. 2002-09-0243 * @throws RemoteException */44 public java.lang.String getDateVersion( ) throws java.rmi.RemoteException ;45 46 /**47 * Get Database Host48 * @return Database Host Name49 * @throws RemoteException */50 public java.lang.String getDbHost( ) throws java.rmi.RemoteException ;51 52 /**53 * Get Database SID54 * @return Database SID55 * @throws RemoteException */56 public java.lang.String getDbName( ) throws java.rmi.RemoteException ;57 58 /**59 * Get Database Port60 * @return Database Posrt61 * @throws RemoteException */62 public int getDbPort( ) throws java.rmi.RemoteException ;63 64 /**65 * Get Database PWD66 * @return Database User Password67 * @throws RemoteException */68 public java.lang.String getDbPwd( ) throws java.rmi.RemoteException ;69 70 /**71 * Get Database UID72 * @return Database User Name73 * @throws RemoteException */74 public java.lang.String getDbUid( ) throws java.rmi.RemoteException ;75 76 /**77 * Get Connection Manager Host78 * @return Connection Manager Host79 * @throws RemoteException */80 public java.lang.String getFwHost( ) throws java.rmi.RemoteException ;81 82 /**83 * Get Connection Manager Port84 * @return Connection Manager Port85 * @throws RemoteException */86 public int getFwPort( ) throws java.rmi.RemoteException ;87 88 /**89 * Get Main Version90 * @return main version - e.g. Version 2.4.3b91 * @throws RemoteException */92 public java.lang.String getMainVersion( ) throws java.rmi.RemoteException ;93 94 /**95 * Describes the instance and its content for debugging purpose96 * @return Debugging information about the instance and its content */97 public java.lang.String getStatus( ) throws java.rmi.RemoteException ;98 99 /**100 * Get Version Count101 * @return number of version inquiries */102 public int getVersionCount( ) throws java.rmi.RemoteException ;103 104 }105