if( type.equals(Fabric8BeanProvider.FABRIC8_1x)) {
String serverType = l.getServerAdapterId();
if( serverType != null ) {
IServerType t = ServerCore.findServerType(serverType);
if( t != null ) {
IRuntimeType rtt = t.getRuntimeType();
try {
IRuntimeWorkingCopy runtime = rtt.createRuntime(rtt.getId(), monitor);
// commented out the naming of the runtime as it seems to break server to runtime links
runtime.setName(dir.getName());
runtime.setLocation(new Path(absolutePath));
IStatus status = runtime.validate(monitor);
if (status == null || status.getSeverity() != IStatus.ERROR) {