From c8cad345ca8945f7eb7d1862cd1caa76986625f9 Mon Sep 17 00:00:00 2001 From: Heng Sin Low Date: Tue, 22 May 2007 03:49:49 +0000 Subject: [PATCH] * minor - javadoc --- base/src/org/compiere/interfaces/Server.java | 4 ++++ base/src/org/compiere/interfaces/ServerLocal.java | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/base/src/org/compiere/interfaces/Server.java b/base/src/org/compiere/interfaces/Server.java index 23b8cf03d1..ad105d6704 100644 --- a/base/src/org/compiere/interfaces/Server.java +++ b/base/src/org/compiere/interfaces/Server.java @@ -34,6 +34,7 @@ public interface Server /** * Get Prepared Statement ResultSet * @param info Result info + * @param token Security Token * @return RowSet * @throws NotSerializableException */ public javax.sql.RowSet pstmt_getRowSet( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) @@ -42,6 +43,7 @@ public interface Server /** * Get Statement ResultSet * @param info Result info + * @param token Security Token * @return RowSet */ public javax.sql.RowSet stmt_getRowSet( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) throws java.rmi.RemoteException; @@ -49,6 +51,7 @@ public interface Server /** * Execute Update * @param info Result info + * @param token Security Token * @return row count */ public int stmt_executeUpdate( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) throws java.rmi.RemoteException; @@ -149,6 +152,7 @@ public interface Server * @param sql table name * @param displayType display type (i.e. BLOB/CLOB) * @param value the data + * @param token Security Token * @return true if updated */ public boolean updateLOB( java.lang.String sql,int displayType,java.lang.Object value,org.compiere.util.SecurityToken token ) throws java.rmi.RemoteException; diff --git a/base/src/org/compiere/interfaces/ServerLocal.java b/base/src/org/compiere/interfaces/ServerLocal.java index d1129f6748..393ff145aa 100644 --- a/base/src/org/compiere/interfaces/ServerLocal.java +++ b/base/src/org/compiere/interfaces/ServerLocal.java @@ -32,6 +32,7 @@ public interface ServerLocal /** * Get Prepared Statement ResultSet * @param info Result info + * @param token Security Token * @return RowSet * @throws NotSerializableException */ public javax.sql.RowSet pstmt_getRowSet( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) throws java.io.NotSerializableException; @@ -39,12 +40,14 @@ public interface ServerLocal /** * Get Statement ResultSet * @param info Result info + * @param token Security Token * @return RowSet */ public javax.sql.RowSet stmt_getRowSet( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) ; /** * Execute Update * @param info Result info + * @param token Security Token * @return row count */ public int stmt_executeUpdate( org.compiere.util.CStatementVO info,org.compiere.util.SecurityToken token ) ; @@ -134,6 +137,7 @@ public interface ServerLocal * @param sql table name * @param displayType display type (i.e. BLOB/CLOB) * @param value the data + * @param token Security Token * @return true if updated */ public boolean updateLOB( java.lang.String sql,int displayType,java.lang.Object value,org.compiere.util.SecurityToken token ) ;