* minor - javadoc

This commit is contained in:
Heng Sin Low 2007-05-22 03:49:49 +00:00
parent ea4ca0ed26
commit c8cad345ca
2 changed files with 8 additions and 0 deletions

View File

@ -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;

View File

@ -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 ) ;