EJB3IIOPWebClassLoaderpublic class EJB3IIOPWebClassLoader extends org.jboss.iiop.WebCL The getKey method of the WebCL class is not working in EJB3, this class fixes that. |
Fields Summary |
---|
private String | jndiName |
Methods Summary |
---|
public java.lang.String | getKey()
String className = getClass().getName();
int dot = className.lastIndexOf('.");
if( dot >= 0 )
className = className.substring(dot+1);
String key = className + '[" + jndiName + ']";
return key;
|
|