Skip to content

Commit

Permalink
Merge pull request #312 from stuartwdouglas/object-table-fix
Browse files Browse the repository at this point in the history
EJBCLIENT-265 Add missing strings to the object table
  • Loading branch information
dmlloyd authored Sep 13, 2017
2 parents 2e93e74 + bd088fd commit 93a986e
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,10 @@
import org.jboss.ejb.client.EJBHandle;
import org.jboss.ejb.client.EJBHomeHandle;
import org.jboss.ejb.client.EJBHomeLocator;
import org.jboss.ejb.client.EJBIdentifier;
import org.jboss.ejb.client.EJBLocator;
import org.jboss.ejb.client.EJBMethodLocator;
import org.jboss.ejb.client.EJBModuleIdentifier;
import org.jboss.ejb.client.EntityEJBLocator;
import org.jboss.ejb.client.EntityEJBMetaData;
import org.jboss.ejb.client.NodeAffinity;
Expand Down Expand Up @@ -164,6 +166,8 @@ final class ProtocolV3ObjectTable implements ObjectTable {
AttachmentKey.class.getName(),
EJBClientPermission.class.getName(),
AsyncResult.class.getName(),
EJBModuleIdentifier.class.getName(),
EJBIdentifier.class.getName(),
"detailMessage",
"cause",
"stackTrace",
Expand All @@ -177,6 +181,17 @@ final class ProtocolV3ObjectTable implements ObjectTable {
"ejbPassivate",
"ejbLoad",
"ejbStore",
"appName",
"moduleName",
"distinctName",
"methodName",
"parameterTypeNames",
"viewType",
"beanName",
"moduleIdentifier",
"clusterName",
"identifier",
"affinity"
};
final AbstractWritingExternalizer[] extByIdTmp = new AbstractWritingExternalizer[simpleObjects.length];
final Map<Object, AbstractWritingExternalizer> objMap = new IdentityHashMap<>();
Expand Down

0 comments on commit 93a986e

Please sign in to comment.