jdillon 2003/08/23 23:07:36
Modified: modules/core/src/java/org/apache/geronimo/common
InvocationType.java
modules/core/src/java/org/apache/geronimo/ejb
EJBInvocationUtil.java
modules/core/src/java/org/apache/geronimo/ejb/container
EJBContainerUtil.java
modules/core/src/java/org/apache/geronimo/remoting
InvocationSupport.java InvocationType.java
Log:
o Applied patch GERONIMO-11 (TYPO error of Ordinal word (oridnal))
by Emerson Cargnin
Revision Changes Path
1.4 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/common/InvocationType.java
Index: InvocationType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/common/InvocationType.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- InvocationType.java 23 Aug 2003 09:07:11 -0000 1.3
+++ InvocationType.java 24 Aug 2003 06:07:35 -0000 1.4
@@ -67,9 +67,9 @@
public final class InvocationType implements Serializable {
private static final String INVOCATION_TYPE_KEY = "INVOCATION_TYPE_KEY";
- // Be careful here. If you change the oridnals, this class must be
changed on evey client.
- private static int MAX_ORIDNAL = 3;
- private static final InvocationType[] values = new
InvocationType[MAX_ORIDNAL + 1];
+ // Be careful here. If you change the ordinals, this class must be
changed on evey client.
+ private static int MAX_ORDINAL = 3;
+ private static final InvocationType[] values = new
InvocationType[MAX_ORDINAL + 1];
public static final InvocationType REMOTE = new InvocationType("REMOTE",
0, false, false);
public static final InvocationType HOME = new InvocationType("HOME", 1,
false, true);
public static final InvocationType LOCAL = new InvocationType("LOCAL",
2, true, false);
@@ -89,7 +89,7 @@
private final int ordinal;
private InvocationType(String name, int ordinal, boolean local, boolean
home) {
- assert ordinal < MAX_ORIDNAL;
+ assert ordinal < MAX_ORDINAL;
assert values[ordinal] == null;
this.name = name;
this.local = local;
1.5 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/EJBInvocationUtil.java
Index: EJBInvocationUtil.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/EJBInvocationUtil.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- EJBInvocationUtil.java 23 Aug 2003 09:07:11 -0000 1.4
+++ EJBInvocationUtil.java 24 Aug 2003 06:07:36 -0000 1.5
@@ -69,9 +69,9 @@
* @version $Revision$ $Date$
*/
public final class EJBInvocationUtil implements Serializable {
- // Be careful here. If you change the oridnals, this class must be
changed on evey client.
- private static int MAX_ORIDNAL = 5;
- private static final EJBInvocationUtil[] values = new
EJBInvocationUtil[MAX_ORIDNAL + 1];
+ // Be careful here. If you change the ordinals, this class must be
changed on evey client.
+ private static int MAX_ORDINAL = 5;
+ private static final EJBInvocationUtil[] values = new
EJBInvocationUtil[MAX_ORDINAL + 1];
private static final EJBInvocationUtil METHOD = new
EJBInvocationUtil("METHOD", 0);
private static final EJBInvocationUtil ID = new EJBInvocationUtil("ID",
1);
private static final EJBInvocationUtil ARGUMENTS = new
EJBInvocationUtil("ARGUMENTS", 2);
@@ -131,7 +131,7 @@
private final int ordinal;
private EJBInvocationUtil(String name, int ordinal) {
- assert ordinal < MAX_ORIDNAL;
+ assert ordinal < MAX_ORDINAL;
assert values[ordinal] == null;
this.name = name;
this.ordinal = ordinal;
1.4 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/container/EJBContainerUtil.java
Index: EJBContainerUtil.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/ejb/container/EJBContainerUtil.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- EJBContainerUtil.java 23 Aug 2003 09:07:11 -0000 1.3
+++ EJBContainerUtil.java 24 Aug 2003 06:07:36 -0000 1.4
@@ -69,9 +69,9 @@
* @version $Revision$ $Date$
*/
public final class EJBContainerUtil implements Serializable {
- // Be careful here. If you change the oridnals, this class must be
changed on evey client.
- private static int MAX_ORIDNAL = 4;
- private static final EJBContainerUtil[] values = new
EJBContainerUtil[MAX_ORIDNAL + 1];
+ // Be careful here. If you change the ordinals, this class must be
changed on evey client.
+ private static int MAX_ORDINAL = 4;
+ private static final EJBContainerUtil[] values = new
EJBContainerUtil[MAX_ORDINAL + 1];
private static final EJBContainerUtil METHOD = new
EJBContainerUtil("METHOD", 0);
private static final EJBContainerUtil ID = new EJBContainerUtil("ID", 1);
private static final EJBContainerUtil ARGUMENTS = new
EJBContainerUtil("ARGUMENTS", 2);
@@ -122,7 +122,7 @@
private final int ordinal;
private EJBContainerUtil(String name, int ordinal) {
- assert ordinal < MAX_ORIDNAL;
+ assert ordinal < MAX_ORDINAL;
assert values[ordinal] == null;
this.name = name;
this.ordinal = ordinal;
1.3 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/InvocationSupport.java
Index: InvocationSupport.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/InvocationSupport.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- InvocationSupport.java 23 Aug 2003 09:07:12 -0000 1.2
+++ InvocationSupport.java 24 Aug 2003 06:07:36 -0000 1.3
@@ -63,9 +63,9 @@
*/
public final class InvocationSupport implements Serializable {
- // Be careful here. If you change the oridnals, this class must be
changed on evey client.
- private static int MAX_ORIDNAL = 3;
- private static final InvocationSupport[] values = new
InvocationSupport[MAX_ORIDNAL + 1];
+ // Be careful here. If you change the ordinals, this class must be
changed on evey client.
+ private static int MAX_ORDINAL = 3;
+ private static final InvocationSupport[] values = new
InvocationSupport[MAX_ORDINAL + 1];
private static final InvocationSupport MARSAHLLED_VALUE = new
InvocationSupport("MARSHALED_VALUE", 0);
private static final InvocationSupport REMOTE_URI = new
InvocationSupport("REMOTE_URI", 1);
private static final InvocationSupport INVOCATION_TYPE = new
InvocationSupport("INVOCATION_TYPE", 2);
@@ -92,7 +92,7 @@
private final int ordinal;
private InvocationSupport(String name, int ordinal) {
- assert ordinal < MAX_ORIDNAL;
+ assert ordinal < MAX_ORDINAL;
assert values[ordinal] == null;
this.name = name;
this.ordinal = ordinal;
1.3 +5 -5
incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/InvocationType.java
Index: InvocationType.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/core/src/java/org/apache/geronimo/remoting/InvocationType.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- InvocationType.java 23 Aug 2003 09:07:12 -0000 1.2
+++ InvocationType.java 24 Aug 2003 06:07:36 -0000 1.3
@@ -61,9 +61,9 @@
*/
public final class InvocationType implements Serializable {
- // Be careful here. If you change the oridnals, this class must be
changed on evey client.
- private static int MAX_ORIDNAL = 2;
- private static final InvocationType[] values = new
InvocationType[MAX_ORIDNAL + 1];
+ // Be careful here. If you change the ordinals, this class must be
changed on evey client.
+ private static int MAX_ORDINAL = 2;
+ private static final InvocationType[] values = new
InvocationType[MAX_ORDINAL + 1];
public static final InvocationType REQUEST = new
InvocationType("REQUEST", 0);
public static final InvocationType DATAGRAM = new
InvocationType("DATAGRAM", 1);
@@ -71,7 +71,7 @@
private final int ordinal;
private InvocationType(String name, int ordinal) {
- assert ordinal < MAX_ORIDNAL;
+ assert ordinal < MAX_ORDINAL;
assert values[ordinal] == null;
this.name = name;
this.ordinal = ordinal;