Geir Magnusson Jr. wrote:
Claim : o.a.g.common.InvocationType appears identical to org.jboss.invocation.InvocationType
It would appear that JBoss Group LLC may themselves be having doubts about this claim. In a post on The Server Side, Bill Burke (Chief Architect, JBoss Group LLC) states:
==============================================
DAIN IS THE AUTHOR OF THIS FILE EVEN THOUGH Scott is listed as an author
java.geronimo.common.InvocationType == Head server/src/main/org/jboss/invocation/InvocationType
- both of same name and same functionality - both implement Serializable - same constants with same name and almost exact signature of initialization
JBOSS:
public static final InvocationType REMOTE =
new InvocationType("REMOTE", 0);
public static final InvocationType LOCAL =
new InvocationType("LOCAL", 1);
public static final InvocationType HOME =
new InvocationType("HOME", 2);
public static final InvocationType LOCALHOME =
new InvocationType("LOCALHOME", 3);GERONIMO:
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);
public static final InvocationType LOCALHOME = new InvocationType("LOCALHOME", 3, false, false);
http://theserverside.com/home/thread.jsp?thread_id=22337#101159
The "DAIN" referred to is Dain Sundstrom (dsundstrom) who is shown in the CVS log to be the original contributor; "Scott" is Scott Stark (starksm) who modified the file on 4/17/2003 (rev 1.2.2.1) and added an @author tag at that time.
-- Jeremy
