Merge remote-tracking branch 'origin/master'

# Conflicts:
#	ejb/ejb-client/pom.xml
#	ejb/ejb-remote/pom.xml
#	ejb/pom.xml
This commit is contained in:
Alex Theedom
2017-01-04 22:44:11 +01:00
508 changed files with 188958 additions and 3775 deletions
@@ -45,8 +45,7 @@ public class EJBClient {
final String distinctName = "";
final String beanName = "HelloWorld";
final String viewClassName = HelloWorld.class.getName();
final String toLookup = "ejb:" + appName + "/" + moduleName
+ "/" + distinctName + "/" + beanName + "!" + viewClassName;
final String toLookup = String.format("ejb:%s/%s/%s/%s!%s", appName, moduleName, distinctName, beanName, viewClassName);
return (HelloWorld) context.lookup(toLookup);
}