Update of /cvsroot/openamf/openamf/src/java/org/openamf/invoker
In directory sc8-pr-cvs1:/tmp/cvs-serv17581/src/java/org/openamf/invoker
Modified Files:
AccessDeniedException.java EJBServiceInvoker.java
JMXServiceInvoker.java JavaServiceInvoker.java
PageableResultSetServiceInvoker.java RankedMethod.java
ServiceInvocationException.java ServiceInvoker.java
ServletLogger.java SessionControlInvoker.java
WebServiceInvoker.java
Log Message:
change ArrayList -> List in fields declaration, functions arguments
add javadoc version tag
Index: AccessDeniedException.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/AccessDeniedException.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** AccessDeniedException.java 21 May 2003 01:36:58 -0000 1.1
--- AccessDeniedException.java 5 Aug 2003 07:41:52 -0000 1.2
***************
*** 4,8 ****
* Exception class for indicationg that a service may not be accessed.
* @author Richard Kunze
! */
public class AccessDeniedException extends Exception {
--- 4,9 ----
* Exception class for indicationg that a service may not be accessed.
* @author Richard Kunze
! * @version $Revision$, $Date$
! */
public class AccessDeniedException extends Exception {
Index: EJBServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/EJBServiceInvoker.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** EJBServiceInvoker.java 5 Jul 2003 19:50:48 -0000 1.4
--- EJBServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.5
***************
*** 16,19 ****
--- 16,23 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class EJBServiceInvoker extends JavaServiceInvoker {
Index: JMXServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/JMXServiceInvoker.java,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** JMXServiceInvoker.java 28 May 2003 15:53:26 -0000 1.6
--- JMXServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.7
***************
*** 13,16 ****
--- 13,20 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class JMXServiceInvoker extends ServiceInvoker {
Index: JavaServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/JavaServiceInvoker.java,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** JavaServiceInvoker.java 5 Jul 2003 19:50:48 -0000 1.18
--- JavaServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.19
***************
*** 14,17 ****
--- 14,21 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class JavaServiceInvoker extends ServiceInvoker {
***************
*** 93,97 ****
RankedMethod serviceMethod = null;
Method[] methods = serviceClass.getMethods();
! ArrayList rankedMethods = new ArrayList(methods.length);
log.debug("REQUESTED methodName: " + methodName);
--- 97,101 ----
RankedMethod serviceMethod = null;
Method[] methods = serviceClass.getMethods();
! List rankedMethods = new ArrayList(methods.length);
log.debug("REQUESTED methodName: " + methodName);
Index: PageableResultSetServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/PageableResultSetServiceInvoker.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** PageableResultSetServiceInvoker.java 28 May 2003 15:53:27 -0000 1.4
--- PageableResultSetServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.5
***************
*** 7,10 ****
--- 7,14 ----
import org.openamf.recordset.ASRecordSet;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class PageableResultSetServiceInvoker extends ServiceInvoker {
Index: RankedMethod.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/RankedMethod.java,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** RankedMethod.java 6 Jul 2003 17:26:29 -0000 1.13
--- RankedMethod.java 5 Aug 2003 07:41:52 -0000 1.14
***************
*** 10,13 ****
--- 10,17 ----
import org.openamf.util.OpenAMFUtils;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class RankedMethod implements Comparable {
***************
*** 52,56 ****
double rank = 0;
! ArrayList decodedParameters = null;
if (method.getName().equalsIgnoreCase(requestedMethodName)) {
--- 56,60 ----
double rank = 0;
! List decodedParameters = null;
if (method.getName().equalsIgnoreCase(requestedMethodName)) {
***************
*** 89,93 ****
List parameters,
double rank,
! ArrayList decodedParameters,
Class[] parameterTypes) {
--- 93,97 ----
List parameters,
double rank,
! List decodedParameters,
Class[] parameterTypes) {
Index: ServiceInvocationException.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/ServiceInvocationException.java,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** ServiceInvocationException.java 24 Jul 2003 18:31:46 -0000 1.9
--- ServiceInvocationException.java 5 Aug 2003 07:41:52 -0000 1.10
***************
*** 9,12 ****
--- 9,16 ----
import org.openamf.AMFError;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class ServiceInvocationException extends Exception {
Index: ServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/ServiceInvoker.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ServiceInvoker.java 28 May 2003 15:53:27 -0000 1.7
--- ServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.8
***************
*** 8,13 ****
import org.openamf.ServiceRequest;
- ;
public abstract class ServiceInvoker {
--- 8,16 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public abstract class ServiceInvoker {
Index: ServletLogger.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/ServletLogger.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ServletLogger.java 25 May 2003 00:32:54 -0000 1.2
--- ServletLogger.java 5 Aug 2003 07:41:52 -0000 1.3
***************
*** 7,10 ****
--- 7,14 ----
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class ServletLogger implements BuildListener {
private GenericServlet servlet;
Index: SessionControlInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/SessionControlInvoker.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** SessionControlInvoker.java 31 May 2003 02:01:15 -0000 1.1
--- SessionControlInvoker.java 5 Aug 2003 07:41:52 -0000 1.2
***************
*** 8,11 ****
--- 8,15 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class SessionControlInvoker extends ServiceInvoker {
Index: WebServiceInvoker.java
===================================================================
RCS file: /cvsroot/openamf/openamf/src/java/org/openamf/invoker/WebServiceInvoker.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** WebServiceInvoker.java 28 May 2003 15:53:26 -0000 1.20
--- WebServiceInvoker.java 5 Aug 2003 07:41:52 -0000 1.21
***************
*** 19,22 ****
--- 19,26 ----
import org.openamf.ServiceRequest;
+ /**
+ *
+ * @version $Revision$, $Date$
+ */
public class WebServiceInvoker extends JavaServiceInvoker {
-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.