break;
case CONTAINER:
profileBuilder = new ContainerProfileBuilder();
break;
case CLIENT:
profileBuilder = new ClientProfileBuilder();
break;
default: // TODO: create profile builders dynamic
throw new IllegalArgumentException("Unknon profile " + profile);
}
return build(profileBuilder, configuration);