KickJava   Java API By Example, From Geeks To Geeks.

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


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 javax.sql.*;
10 import org.compiere.interfaces.*;
11 import org.compiere.process.*;
12 import java.rmi.RemoteException JavaDoc;
13 import javax.ejb.CreateException JavaDoc;
14 import javax.ejb.EJBException JavaDoc;
15 import javax.ejb.FinderException JavaDoc;
16 import javax.ejb.RemoveException JavaDoc;
17 import javax.ejb.SessionBean JavaDoc;
18 import javax.ejb.SessionContext JavaDoc;
19 import javax.naming.Context JavaDoc;
20 import javax.naming.InitialContext JavaDoc;
21 import javax.naming.NamingException JavaDoc;
22 import javax.rmi.PortableRemoteObject JavaDoc;
23 import org.apache.log4j.Logger;
24 import org.compiere.Compiere;
25 import org.compiere.util.CompiereStatement;
26 import org.compiere.util.CompiereStatementVO;
27 import org.compiere.acct.AcctServer;
28 import org.compiere.model.MWindowVO;
29
30 /**
31  * Remote interface for compiere/Server.
32  * @author XDOCLET 1.1.2
33  * @version XDOCLET 1.1.2 * @xdoclet-generated at Nov 7, 2003 1:05:48 PM
34  */

35 public interface Server
36    extends javax.ejb.EJBObject JavaDoc
37 {
38    /**
39     * Describes the instance and its content for debugging purpose
40     * @return Debugging information about the instance and its content */

41    public java.lang.String JavaDoc getStatus( ) throws java.rmi.RemoteException JavaDoc;
42
43    /**
44     * Get and create Window Model Value Object
45     * @param ctx Environment Properties
46     * @param WindowNo number of this window
47     * @param AD_Window_ID the internal number of the window, if not 0, AD_Menu_ID is ignored
48     * @param AD_Menu_ID ine internal menu number, used when AD_Window_ID is 0
49     * @return initialized Window Model
50     * @throws RemoteException */

51    public org.compiere.model.MWindowVO getWindowVO( java.util.Properties JavaDoc ctx,int WindowNo,int AD_Window_ID,int AD_Menu_ID ) throws java.rmi.RemoteException JavaDoc;
52
53    /**
54     * Post Immediate
55     * @param AD_Table_ID Table ID of Document
56     * @param AD_Client_ID Client ID of Document
57     * @param Record_ID Record ID of this document
58     * @param force force posting
59     * @return true, if success
60     * @throws RemoteException */

61    public boolean postImmediate( int AD_Table_ID,int AD_Client_ID,int Record_ID,boolean force ) throws java.rmi.RemoteException JavaDoc;
62
63    /**
64     * Process class on Server
65     * @param className class name
66     * @param ctx context
67     * @param AD_PInstance_ID instance
68     * @param Record_ID record
69     * @param Name Process Name
70     * @return true if success
71     * @throws RemoteException */

72    public boolean process( java.lang.String JavaDoc className,java.util.Properties JavaDoc ctx,java.lang.String JavaDoc Name,int AD_PInstance_ID,int Record_ID ) throws java.rmi.RemoteException JavaDoc;
73
74    /**
75     * Process Remote
76     * @param ctx Context
77     * @param pi Process Info
78     * @return resulting Process Info
79     * @throws RemoteException */

80    public org.compiere.process.ProcessInfo process( java.util.Properties JavaDoc ctx,org.compiere.process.ProcessInfo pi ) throws java.rmi.RemoteException JavaDoc;
81
82    /**
83     * Get ResultSet
84     * @param info Result info
85     * @return ResultSet or RowSet
86     * @throws RemoteException */

87    public int stmt_executeUpdate( org.compiere.util.CompiereStatementVO info ) throws java.rmi.RemoteException JavaDoc;
88
89    /**
90     * Get ResultSet
91     * @param info Result info
92     * @return RowSet
93     * @throws RemoteException */

94    public javax.sql.RowSet JavaDoc stmt_getRowSet( org.compiere.util.CompiereStatementVO info ) throws java.rmi.RemoteException JavaDoc;
95
96 }
97
Popular Tags