// Start to create the profile
DeploymentRepository repository = profileRepository.createProfileDeploymentRepository(key, metaData);
// Create the profile
AbstractProfile profile = new AbstractProfile(repository, key);
// Copy the sub-profile keys
profile.setSubProfiles(subProfiles);
return profile;
}