commandChain.add(getStorageAreaCommand);
commandChain.add(new StopBundleCommand());
commandChain.add(new SnapshotCommand(getStorageAreaCommand));
commandChain.add(new StartCustomizerCommand());
CommitResourceCommand commitCommand = new CommitResourceCommand();
commandChain.add(new DropAllResourcesCommand(commitCommand));
commandChain.add(commitCommand);
commandChain.add(new DropAllBundlesCommand());
return commandChain;
}