* @param newDeployer the new deployer
* @return the sorted deployers
*/
protected List<Deployer> insert(List<Deployer> original, Deployer newDeployer)
{
DeployerSorter sorter = DeployerSorterFactory.newSorter();
return sorter.sortDeployers(original, newDeployer);
}