return new ProfileDTO(profile, getLink("containers"), overlay, getLink("requirements"), getLink("fileNames"));
}
@DELETE
public void deleteProfile() {
FabricService fabricService = getFabricService();
Objects.notNull(fabricService, "fabricService");
ProfileService profileService = getProfileService();
Objects.notNull(profileService, "profileService");
profileService.deleteProfile(fabricService, profile.getVersion(), profile.getId(), true);
}